Changeset 7012
- Timestamp:
- Sep 23, 2010, 4:50:19 PM (14 years ago)
- Location:
- extensions/Autosize
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/Autosize/js/Affiche_script.js
r7011 r7012 33 33 }else if( MooTools.version == "1.11") { 34 34 B = element; 35 if (!B) { return null; } 35 if (!B) { 36 if (typeof (B) == "boolean") return null; 37 return jQuery(); 38 } 36 39 if (B.htmlElement) { 37 40 return Garbage.collect(B); 38 41 39 42 } 40 if ([window, document].contains(B)) { return B; } 43 if ([window, document].contains(B)) { 44 return B; 45 } 41 46 var A = $type(B); 42 47 if (A == "string") { B = document.getElementById(B); A = (B) ? "element" : false; } -
extensions/Autosize/main.inc.php
r7011 r7012 2 2 /* 3 3 Plugin Name: AutoSize 4 Version: 1.1.2 4 Version: 1.1.21 5 5 Description: Ajuste l'affichage des photos en fonction de la hauteur de la fenetre de navigation 6 6 Plugin URI: http://piwigo.org/ext/extension_view.php?eid=448
Note: See TracChangeset
for help on using the changeset viewer.