| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /**
- * Make an analysis of Data attributes in HTML elements and creates a <markup>
- * based on each data type.
- *
- * @namespace LUNGO.Boot
- * @class Data
- * @requires Zepto
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
- */
- LUNGO.Boot.Data = (function(lng, undefined) {
- /**
- * Initialize the <markup> data-attributes analisys
- *
- * @method init
- *
- *
- */
- var start = function() {
- var attributes = lng.Attributes.Data;
- for (var attribute in attributes) {
- if (lng.Core.isOwnProperty(attributes, attribute)) {
- _findElements(attributes[attribute]);
- }
- }
- };
- var _findElements = function(attribute) {
- var elements = lng.Dom.query(attribute.selector);
- for (var i = 0, len = elements.length; i < len; i++) {
- var element = lng.Dom.query(elements[i]);
- lng.View.Template.Binding.dataAttribute(element, attribute);
- }
- };
- return {
- start: start
- };
- })(LUNGO);
|