Changeset 10246 in spip-zone
- Timestamp:
- Mar 8, 2007, 3:28:57 PM (14 years ago)
- Location:
- _plugins_/_dev_/smoothslideshow
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/_dev_/smoothslideshow/modeles/timed-images_art.html
r9515 r10246 15 15 <script type="text/javascript"> 16 16 function startSlideshow() { 17 var slideshow = new timedSlideShow( $('mySlideshow'), mySlideData);17 var slideshow = new timedSlideShow(sss$('mySlideshow'), mySlideData); 18 18 } 19 19 -
_plugins_/_dev_/smoothslideshow/modeles/timed-images_rub.html
r9364 r10246 15 15 <script type="text/javascript"> 16 16 function startSlideshow() { 17 var slideshow = new timedSlideShow( $('mySlideshow'), mySlideData);17 var slideshow = new timedSlideShow(sss$('mySlideshow'), mySlideData); 18 18 } 19 19 -
_plugins_/_dev_/smoothslideshow/modeles/timed-logos_art.html
r9364 r10246 15 15 <script type="text/javascript"> 16 16 function startSlideshow() { 17 var slideshow = new timedSlideShow( $('mySlideshow'), mySlideData);17 var slideshow = new timedSlideShow(sss$('mySlideshow'), mySlideData); 18 18 } 19 19 -
_plugins_/_dev_/smoothslideshow/scripts/moo.fx.js
r9363 r10246 88 88 89 89 initialize: function(el, property, options){ 90 this.element = $(el);90 this.element = sss$(el); 91 91 this.setOptions(options); 92 92 this.property = property.camelize(); … … 103 103 104 104 initialize: function(el, options){ 105 this.element = $(el);105 this.element = sss$(el); 106 106 this.setOptions(options); 107 107 this.now = {}; -
_plugins_/_dev_/smoothslideshow/scripts/moo.fx.pack.js
r9363 r10246 7 7 8 8 initialize: function(el, options) { 9 this.element = $(el);9 this.element = sss$(el); 10 10 this.setOptions(options); 11 11 this.element.style.overflow = 'hidden'; … … 32 32 33 33 initialize: function(el, property, options){ 34 this.element = $(el);34 this.element = sss$(el); 35 35 this.setOptions(options); 36 36 this.property = property.camelize(); -
_plugins_/_dev_/smoothslideshow/scripts/moo.fx.utils.js
r9365 r10246 7 7 8 8 initialize: function(el, options){ 9 this.element = $(el);9 this.element = sss$(el); 10 10 this.setOptions(options); 11 11 this.element.style.overflow = 'hidden'; … … 31 31 32 32 initialize: function(el, options){ 33 this.element = $(el);33 this.element = sss$(el); 34 34 this.setOptions(options); 35 35 this.element.style.overflow = 'hidden'; … … 56 56 57 57 initialize: function(el, options){ 58 this.element = $(el);58 this.element = sss$(el); 59 59 this.setOptions(options); 60 60 this.now = 1; -
_plugins_/_dev_/smoothslideshow/scripts/prototype.lite.js
r9363 r10246 49 49 }; 50 50 51 function $() {51 function sss$() { 52 52 if (arguments.length == 1) return get$(arguments[0]); 53 53 var elements = []; … … 68 68 69 69 remove: function(element) { 70 element = $(element);70 element = sss$(element); 71 71 element.parentNode.removeChild(element); 72 72 }, 73 73 74 74 hasClassName: function(element, className) { 75 element = $(element);75 element = sss$(element); 76 76 return !!element.className.match(new RegExp("\\b"+className+"\\b")); 77 77 }, 78 78 79 79 addClassName: function(element, className) { 80 element = $(element);80 element = sss$(element); 81 81 if (!Element.hasClassName(element, className)) element.className = (element.className+' '+className); 82 82 }, 83 83 84 84 removeClassName: function(element, className) { 85 element = $(element);85 element = sss$(element); 86 86 if (Element.hasClassName(element, className)) element.className = element.className.replace(className, ''); 87 87 }
Note: See TracChangeset
for help on using the changeset viewer.