diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-09 10:53:37 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-09 10:53:37 +0200 |
commit | 7e7678364b9e89337612d7879e7f5cbb0792b35b (patch) | |
tree | 6ed6d4fe0b7910decf28afccda2e17f02d2d5623 /library/jRange | |
parent | 4fd80304a55d7edb1a558ff1fdcbff795fa12302 (diff) | |
download | volse-hubzilla-7e7678364b9e89337612d7879e7f5cbb0792b35b.tar.gz volse-hubzilla-7e7678364b9e89337612d7879e7f5cbb0792b35b.tar.bz2 volse-hubzilla-7e7678364b9e89337612d7879e7f5cbb0792b35b.zip |
make jRange behave again
Diffstat (limited to 'library/jRange')
-rw-r--r-- | library/jRange/jquery.range.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/jRange/jquery.range.js b/library/jRange/jquery.range.js index 4a35a380f..860b74511 100644 --- a/library/jRange/jquery.range.js +++ b/library/jRange/jquery.range.js @@ -71,7 +71,7 @@ console.log('jRange : no width found, returning'); return; } else { - this.domNode.css('width', this.options.width || this.inputNode.width()); + this.domNode.width(this.options.width || this.inputNode.width()); this.inputNode.hide(); } @@ -332,4 +332,4 @@ return result || this; }; -})(jQuery, window, document);
\ No newline at end of file +})(jQuery, window, document); |