diff options
author | wei <> | 2007-03-27 02:23:20 +0000 |
---|---|---|
committer | wei <> | 2007-03-27 02:23:20 +0000 |
commit | 1b9b64637fe08848f610bbd19b80c031cb7dba63 (patch) | |
tree | 52f7486e911f60c9a91904c91e3944f4f4f27bca /framework/Web/Javascripts/scriptaculous/slider.js | |
parent | c5d0cd2824e3c3bb2f6f3834177a71c1d7b78519 (diff) |
set prado trunk to use prototype.js v1.5.1rc2, script.aculo.us to v1.7.1beta
Diffstat (limited to 'framework/Web/Javascripts/scriptaculous/slider.js')
-rw-r--r-- | framework/Web/Javascripts/scriptaculous/slider.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/framework/Web/Javascripts/scriptaculous/slider.js b/framework/Web/Javascripts/scriptaculous/slider.js index f24f2823..64115199 100644 --- a/framework/Web/Javascripts/scriptaculous/slider.js +++ b/framework/Web/Javascripts/scriptaculous/slider.js @@ -1,6 +1,6 @@ -// script.aculo.us slider.js v1.7.0, Fri Jan 19 19:16:36 CET 2007 +// script.aculo.us slider.js v1.7.1_beta1, Mon Mar 12 14:40:50 +0100 2007 -// Copyright (c) 2005, 2006 Marty Haught, Thomas Fuchs +// Copyright (c) 2005-2007 Marty Haught, Thomas Fuchs // // script.aculo.us is freely distributable under the terms of an MIT-style license. // For details, see the script.aculo.us web site: http://script.aculo.us/ @@ -242,8 +242,7 @@ Control.Slider.prototype = { if(this.active) { if(!this.dragging) this.dragging = true; this.draw(event); - // fix AppleWebKit rendering - if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0); + if(Prototype.Browser.WebKit) window.scrollBy(0,0); Event.stop(event); } }, |