X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Roo.js;h=08881e14bf83ec25a7cf86c3ba92263a20757583;hb=ef4885eb1a4bc02ed4aab9d21e225dc02ac9db4f;hp=3a75d79a979035d9c78a831bd7697b2aabab43e4;hpb=7da60a63d558b60db4a8423536fcce9b5eed31d5;p=roojs1 diff --git a/Roo.js b/Roo.js index 3a75d79a97..08881e14bf 100644 --- a/Roo.js +++ b/Roo.js @@ -19,7 +19,7 @@ window["undefined"] = window["undefined"]; /** * @class Roo * Roo core utilities and functions. - * @singleton + * @static */ var Roo = {}; /** @@ -343,10 +343,6 @@ Roo.factory(conf, Roo.data); return; // alerT? } - if(window.location.href.indexOf("localhost") == -1) { - return; - } - console.log(s); }, /** @@ -672,7 +668,30 @@ Roo.factory(conf, Roo.data); { var node = Roo.DomQuery.selectNode(selector,root); return node ? Roo.get(node) : new Roo.Element(false); - } + }, + /** + * Find the current bootstrap width Grid size + * Note xs is the default for smaller.. - this is currently used by grids to render correct columns + * @returns {String} (xs|sm|md|lg|xl) + */ + + getGridSize : function() + { + var w = Roo.lib.Dom.getViewWidth(); + switch(true) { + case w > 1200: + return 'xl'; + case w > 992: + return 'lg'; + case w > 768: + return 'md'; + case w > 576: + return 'sm'; + default: + return 'xs' + } + + } });