Parcourir la source

Pass reference variable for article resizing

@soyjavi il y a 14 ans
Parent
commit
5bcd08782e
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  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);
             }
         }
     };