| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- *
- *
- * @namespace LUNGO.View
- * @class Resize
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
- */
- LUNGO.View.Resize = (function(lng, undefined) {
- var ATTRIBUTE = lng.Constants.ATTRIBUTE;
- /**
- * Sets toolbars width, using total screen width
- *
- * @method toolbars
- */
- var toolbars = function() {
- if (!lng.Element.toolbars)
- lng.Element.toolbars = lng.dom('.toolbar nav, .groupbar');
- var toolbars = lng.Element.toolbars;
- for (var i = 0, len = toolbars.length; i < len; i++) {
- var toolbar = lng.dom(toolbars[i]);
- var toolbar_children = toolbar.children();
- var toolbar_children_percent = 100 / toolbar.children().length;
- toolbar_children.style(ATTRIBUTE.WIDTH, toolbar_children_percent + ATTRIBUTE.PERCENT);
- }
- };
- return {
- toolbars: toolbars
- };
- })(LUNGO);
|