diff options
author | marijus <mario@mariovavti.com> | 2014-06-16 21:13:11 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-06-16 21:13:11 +0200 |
commit | 580c827cdeadf52a12c02c4e7e6bdfdc7049a7db (patch) | |
tree | 589a2d6b662e77d2ed4d26b7bb29ad4ca50a5620 /library/jquery.divgrow | |
parent | 4b1625dd164c82bd1e16b85fc70255658954e908 (diff) | |
download | volse-hubzilla-580c827cdeadf52a12c02c4e7e6bdfdc7049a7db.tar.gz volse-hubzilla-580c827cdeadf52a12c02c4e7e6bdfdc7049a7db.tar.bz2 volse-hubzilla-580c827cdeadf52a12c02c4e7e6bdfdc7049a7db.zip |
adjust expand/collapse speed to match jquery default
Diffstat (limited to 'library/jquery.divgrow')
-rw-r--r-- | library/jquery.divgrow/jquery.divgrow-1.3.1.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/jquery.divgrow/jquery.divgrow-1.3.1.js b/library/jquery.divgrow/jquery.divgrow-1.3.1.js index 811d2ca3e..e79c7928c 100644 --- a/library/jquery.divgrow/jquery.divgrow-1.3.1.js +++ b/library/jquery.divgrow/jquery.divgrow-1.3.1.js @@ -32,7 +32,7 @@ (function ($) {
var divgrowid = 0;
$.fn.divgrow = function (options) {
- var options = $.extend({}, { initialHeight: 100, moreText: "+ Show More", lessText: "- Show Less", speed: 1000, showBrackets: true }, options);
+ var options = $.extend({}, { initialHeight: 100, moreText: "+ Show More", lessText: "- Show Less", speed: 400, showBrackets: true }, options);
return this.each(function () {
divgrowid++;
|