Procházet zdrojové kódy

Pass reference variable for article resizing

@soyjavi před 14 roky
rodič
revize
5bcd08782e
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      src/boot/Lungo.Boot.Section.js

+ 3 - 3
src/boot/Lungo.Boot.Section.js

@@ -1,6 +1,6 @@
-/** 
+/**
  * Initialize the <section> element
- * 
+ *
  * @namespace LUNGO.Boot
  * @class Section
  * @requires Zepto
@@ -57,7 +57,7 @@ LUNGO.Boot.Section = (function(lng, undefined) {
         for (var attribute in section_attributes) {
             if (lng.Core.isOwnProperty(section_attributes, attribute)) {
                 var property = section_attributes[attribute];
-                lng.View.Resize.article(section, property.name, property.bind);
+                lng.View.Resize.article(section, property.name, property.bind, property.reference);
             }
         }
     };