X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Roo.js;h=bb98fe5ec816c09c84e55275e98260bbf557fd87;hb=5b558a29c3937039fd3e5fbff2fde0026d4e64f1;hp=54e8329ee8b29a417f9dad3fbc6aca831d650638;hpb=d07f3a14e47379451580e744988d7aa3196614dc;p=roojs1 diff --git a/Roo.js b/Roo.js index 54e8329ee8..bb98fe5ec8 100644 --- a/Roo.js +++ b/Roo.js @@ -342,8 +342,8 @@ Roo.factory(conf, Roo.data); if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) { return; // alerT? } - console.log(s); + console.log(s); }, /** * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2". Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value. @@ -668,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' + } + + } });