jscrollpane-rails 2.0.21 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/LICENSE +2 -2
- data/README.md +35 -15
- data/app/assets/javascripts/jquery.jscrollpane.js +1451 -1361
- data/app/assets/stylesheets/jquery.jscrollpane.css +117 -0
- data/lib/jscrollpane-rails/version.rb +1 -1
- metadata +34 -8
- data/app/assets/stylesheets/jscrollpane.css +0 -115
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8c44d1282555878230b6462b49367cfccf339d9298b3cded4b10bd14ec8b79a3
|
4
|
+
data.tar.gz: d848d4a686dc5fd061cdd3a0e7a6425bf87d383168392060be1f00850a9d5f24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bc8979e62344fc724121581ea4b2c7e6bccba7b3f03babd1bbbe0d75e0f4f7d581907d8a3738b4445c576ece89db6f47532a69d8809a41fb6e6bed89303067e
|
7
|
+
data.tar.gz: 7b37b548289a70c52be1aa7ec0ad7839205221a64ea794738779921976904fda40bfa02267e5c35341abc96078b82471d35d9e9af45defe1cef47989a6aa453c
|
data/LICENSE
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright (c)
|
1
|
+
Copyright (c) 2020 Ilya Bodrov-Krukowski
|
2
2
|
|
3
3
|
MIT License
|
4
4
|
|
@@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
19
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
20
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
21
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,18 +1,20 @@
|
|
1
1
|
# jScrollPane plugin for Rails
|
2
2
|
|
3
|
-
[](http://badge.fury.io/rb/jscrollpane-rails)
|
4
|
+
[](https://travis-ci.org/bodrovis/jscrollpane-rails)
|
4
5
|
|
5
|
-
A
|
6
|
-
(www.kelvinluck.com):
|
6
|
+
A Ruby gem that uses the Rails asset pipeline to include the jScrollPane plugin by Kelvin Luck and Tuukka Pasanen:
|
7
7
|
|
8
|
-
*
|
9
|
-
* Source
|
8
|
+
* [Library's homepage](http://jscrollpane.kelvinluck.com/)
|
9
|
+
* [Source code](https://github.com/vitch/jScrollPane)
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
13
13
|
Add this line to your application's Gemfile:
|
14
14
|
|
15
|
-
|
15
|
+
```ruby
|
16
|
+
gem 'jscrollpane-rails'
|
17
|
+
```
|
16
18
|
|
17
19
|
And then execute:
|
18
20
|
|
@@ -22,7 +24,7 @@ Or install it yourself as:
|
|
22
24
|
|
23
25
|
$ gem install jscrollpane-rails
|
24
26
|
|
25
|
-
|
27
|
+
This is a jQuery plugin so you will also need the `jquery-rails` gem (for instance, Rails 5.1 does not have this gem by default anymore):
|
26
28
|
|
27
29
|
* https://github.com/rails/jquery-rails
|
28
30
|
|
@@ -38,19 +40,37 @@ There is a gem `mwheelintent-rails` available:
|
|
38
40
|
|
39
41
|
* https://github.com/bodrovis/mwheelintent-rails
|
40
42
|
|
41
|
-
FOR RUSSIAN SPEAKERS: There is a guide available describing basic usage of jScrollPane: http://
|
43
|
+
FOR RUSSIAN SPEAKERS: There is a guide available describing basic usage of jScrollPane: http://bodrovis.tech/categories/javascript-css-html/posts/nestandartnaya-polosa-prokrutki-s-pomoschyu-javascript
|
42
44
|
|
43
|
-
FOR ENGLISH SPEAKERS: The same guide is now
|
45
|
+
FOR ENGLISH SPEAKERS: The same guide is now available in English: http://bodrovis.tech/categories/javascript-css-html/posts/creating-custom-scrollpane-using-javascript
|
44
46
|
|
45
47
|
## Usage
|
46
48
|
|
47
49
|
In your `application.js` you will need to add this line:
|
48
50
|
|
49
|
-
|
50
|
-
|
51
|
-
|
51
|
+
```js
|
52
|
+
//= require jquery.jscrollpane
|
53
|
+
```
|
52
54
|
|
53
|
-
|
55
|
+
And in your `application.scss` you will need to add this line:
|
56
|
+
|
57
|
+
```scss
|
58
|
+
@import 'jquery.jscrollpane';
|
59
|
+
```
|
60
|
+
|
61
|
+
## Testing
|
62
|
+
|
63
|
+
Run
|
64
|
+
|
65
|
+
```console
|
66
|
+
$ bundle install
|
67
|
+
```
|
68
|
+
|
69
|
+
and then
|
70
|
+
|
71
|
+
```console
|
72
|
+
$ rake test
|
73
|
+
```
|
54
74
|
|
55
75
|
## Contributing
|
56
76
|
|
@@ -62,6 +82,6 @@ And in your `application.css` you will need to add this line:
|
|
62
82
|
|
63
83
|
## License
|
64
84
|
|
65
|
-
This plugin is licensed under the [MIT
|
85
|
+
This plugin is licensed under the [MIT license](https://github.com/bodrovis/jscrollpane-rails/blob/master/LICENSE). The jScrollPane itself is dual-licensed under the [GPL 2 license](https://github.com/vitch/jScrollPane/blob/master/GPL-LICENSE.txt) and the MIT license.
|
66
86
|
|
67
|
-
Copyright (c)
|
87
|
+
Copyright (c) 2020 [Ilya Bodrov-Krukowski](http://bodrovis.tech)
|
@@ -1,26 +1,32 @@
|
|
1
1
|
/*!
|
2
|
-
* jScrollPane - v2.
|
2
|
+
* jScrollPane - v2.2.3-rc.1 - 2020-06-26
|
3
3
|
* http://jscrollpane.kelvinluck.com/
|
4
4
|
*
|
5
5
|
* Copyright (c) 2014 Kelvin Luck
|
6
|
+
* Copyright (c) 2017-2020 Tuukka Pasanen
|
6
7
|
* Dual licensed under the MIT or GPL licenses.
|
8
|
+
*
|
9
|
+
* SPDX-License-Identifier: MIT
|
10
|
+
* SPDX-License-Identifier: GPL-2.0-or-later
|
7
11
|
*/
|
8
12
|
|
9
13
|
// Script: jScrollPane - cross browser customisable scrollbars
|
10
14
|
//
|
11
|
-
// *Version: 2.0.21, Last updated: 2015-02-24*
|
12
|
-
//
|
13
15
|
// Project Home - http://jscrollpane.kelvinluck.com/
|
14
16
|
// GitHub - http://github.com/vitch/jScrollPane
|
15
|
-
//
|
16
|
-
//
|
17
|
+
// CND - https://cdnjs.com/libraries/jScrollPane
|
18
|
+
// Source - https://cdnjs.cloudflare.com/ajax/libs/jScrollPane/2.2.1/script/jquery.jscrollpane.min.js
|
19
|
+
// (Minified) - https://cdnjs.cloudflare.com/ajax/libs/jScrollPane/2.2.1/script/jquery.jscrollpane.js
|
20
|
+
// CSS - https://cdnjs.cloudflare.com/ajax/libs/jScrollPane/2.2.1/style/jquery.jscrollpane.css
|
21
|
+
// (Minified) - https://cdnjs.cloudflare.com/ajax/libs/jScrollPane/2.2.1/style/jquery.jscrollpane.min.css
|
17
22
|
//
|
18
23
|
// About: License
|
19
24
|
//
|
20
|
-
// Copyright (c)
|
25
|
+
// Copyright (c) 2017 Kelvin Luck
|
26
|
+
// Copyright (c) 2017-2020 Tuukka Pasanen
|
21
27
|
// Dual licensed under the MIT or GPL Version 2 licenses.
|
22
|
-
//
|
23
|
-
//
|
28
|
+
// https://github.com/vitch/jScrollPane/blob/master/MIT-LICENSE.txt
|
29
|
+
// https://github.com/vitch/jScrollPane/blob/master/GPL-LICENSE.txt
|
24
30
|
//
|
25
31
|
// About: Examples
|
26
32
|
//
|
@@ -34,1432 +40,1516 @@
|
|
34
40
|
// website (http://jscrollpane.kelvinluck.com/) for more information on getting support. You are also
|
35
41
|
// welcome to fork the project on GitHub if you can contribute a fix for a given issue.
|
36
42
|
//
|
37
|
-
// jQuery Versions -
|
38
|
-
// Browsers Tested -
|
43
|
+
// jQuery Versions - jQuery 3.x. Although script should work from jQuery 1.1 and up but no promises are made.
|
44
|
+
// Browsers Tested - See jQuery browser support page: https://jquery.com/browser-support/. Only modern
|
45
|
+
// browsers are supported.
|
39
46
|
//
|
40
47
|
// About: Release History
|
41
48
|
//
|
42
|
-
// 2.
|
43
|
-
//
|
44
|
-
//
|
45
|
-
// 2.
|
46
|
-
// 2.
|
47
|
-
// 2.
|
48
|
-
// 2.
|
49
|
-
//
|
50
|
-
//
|
51
|
-
//
|
52
|
-
// 2.0
|
53
|
-
// 2.0.
|
54
|
-
//
|
55
|
-
//
|
56
|
-
//
|
57
|
-
//
|
58
|
-
// 2.0.0beta5 - (2010-10-18) jQuery 1.4.3 support, various bug fixes
|
59
|
-
// 2.0.0beta4 - (2010-09-17) clickOnTrack support, bug fixes
|
60
|
-
// 2.0.0beta3 - (2010-08-27) Horizontal mousewheel, mwheelIntent, keyboard support, bug fixes
|
61
|
-
// 2.0.0beta2 - (2010-08-21) Bug fixes
|
62
|
-
// 2.0.0beta1 - (2010-08-17) Rewrite to follow modern best practices and enable horizontal scrolling, initially hidden
|
63
|
-
// elements and dynamically sized elements.
|
64
|
-
// 1.x - (2006-12-31 - 2010-07-31) Initial version, hosted at googlecode, deprecated
|
49
|
+
// 2.2.3-rc.1 - (2020-06-26) Fix Github Issue #376 and #377 with jQuery 3.5 and upcoming jQuery 4.0
|
50
|
+
// Small change with setting stickToBottom. Updated other scripts to
|
51
|
+
// jQuery 3.x.
|
52
|
+
// 2.2.2 - (2020-05-06) Just update NPM dependecies to remove vunerbilities
|
53
|
+
// 2.2.1 - (2018-09-27) No changed applied to release so same as RC1/2
|
54
|
+
// 2.2.1-rc.2 - (2018-06-14) Sucked NPM release have to make new Release.. this is 2018!
|
55
|
+
// 2.2.1-rc.1 - (2018-06-14) Fixed CSSLint warnings which can lead CSS problems in
|
56
|
+
// production! Please report a issue if this breaks something!
|
57
|
+
// * Merged:
|
58
|
+
// - #360 Register to globally available version of jQuery
|
59
|
+
// 2.2.0 - (2018-05-16) No changes to RC1
|
60
|
+
// 2.2.0-rc.1 - (2018-04-28) Merged resize sensor to find out size changes of screen and
|
61
|
+
// again little bit tuned this to support more npm goodies.
|
62
|
+
// * Merged:
|
63
|
+
// - #361 Event based reinitialising - Resize Sensor
|
64
|
+
// - #359 Use npm scripts and local dev dependencies to build the project
|
65
65
|
|
66
66
|
(function (factory) {
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
}(function($){
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
.css({
|
135
|
-
'width': paneWidth + 'px',
|
136
|
-
'height': paneHeight + 'px'
|
137
|
-
}
|
138
|
-
).append(pane).appendTo(elem);
|
139
|
-
|
140
|
-
/*
|
141
|
-
// Move any margins from the first and last children up to the container so they can still
|
142
|
-
// collapse with neighbouring elements as they would before jScrollPane
|
143
|
-
firstChild = pane.find(':first-child');
|
144
|
-
lastChild = pane.find(':last-child');
|
145
|
-
elem.css(
|
146
|
-
{
|
147
|
-
'margin-top': firstChild.css('margin-top'),
|
148
|
-
'margin-bottom': lastChild.css('margin-bottom')
|
149
|
-
}
|
150
|
-
);
|
151
|
-
firstChild.css('margin-top', 0);
|
152
|
-
lastChild.css('margin-bottom', 0);
|
153
|
-
*/
|
154
|
-
} else {
|
155
|
-
elem.css('width', '');
|
156
|
-
|
157
|
-
maintainAtBottom = settings.stickToBottom && isCloseToBottom();
|
158
|
-
maintainAtRight = settings.stickToRight && isCloseToRight();
|
159
|
-
|
160
|
-
hasContainingSpaceChanged = elem.innerWidth() + originalPaddingTotalWidth != paneWidth || elem.outerHeight() != paneHeight;
|
161
|
-
|
162
|
-
if (hasContainingSpaceChanged) {
|
163
|
-
paneWidth = elem.innerWidth() + originalPaddingTotalWidth;
|
164
|
-
paneHeight = elem.innerHeight();
|
165
|
-
container.css({
|
166
|
-
width: paneWidth + 'px',
|
167
|
-
height: paneHeight + 'px'
|
168
|
-
});
|
169
|
-
}
|
67
|
+
if (typeof define === 'function' && define.amd) {
|
68
|
+
// AMD. Register as an anonymous module.
|
69
|
+
define(['jquery'], factory);
|
70
|
+
} else if (typeof exports === 'object') {
|
71
|
+
// Node/CommonJS style for Browserify
|
72
|
+
module.exports = factory(jQuery || require('jquery'));
|
73
|
+
} else {
|
74
|
+
// Browser globals
|
75
|
+
factory(jQuery);
|
76
|
+
}
|
77
|
+
})(function ($) {
|
78
|
+
$.fn.jScrollPane = function (settings) {
|
79
|
+
// JScrollPane "class" - public methods are available through $('selector').data('jsp')
|
80
|
+
function JScrollPane(elem, s) {
|
81
|
+
var settings,
|
82
|
+
jsp = this,
|
83
|
+
pane,
|
84
|
+
paneWidth,
|
85
|
+
paneHeight,
|
86
|
+
container,
|
87
|
+
contentWidth,
|
88
|
+
contentHeight,
|
89
|
+
percentInViewH,
|
90
|
+
percentInViewV,
|
91
|
+
isScrollableV,
|
92
|
+
isScrollableH,
|
93
|
+
verticalDrag,
|
94
|
+
dragMaxY,
|
95
|
+
verticalDragPosition,
|
96
|
+
horizontalDrag,
|
97
|
+
dragMaxX,
|
98
|
+
horizontalDragPosition,
|
99
|
+
verticalBar,
|
100
|
+
verticalTrack,
|
101
|
+
scrollbarWidth,
|
102
|
+
verticalTrackHeight,
|
103
|
+
verticalDragHeight,
|
104
|
+
arrowUp,
|
105
|
+
arrowDown,
|
106
|
+
horizontalBar,
|
107
|
+
horizontalTrack,
|
108
|
+
horizontalTrackWidth,
|
109
|
+
horizontalDragWidth,
|
110
|
+
arrowLeft,
|
111
|
+
arrowRight,
|
112
|
+
reinitialiseInterval,
|
113
|
+
originalPadding,
|
114
|
+
originalPaddingTotalWidth,
|
115
|
+
previousContentWidth,
|
116
|
+
wasAtTop = true,
|
117
|
+
wasAtLeft = true,
|
118
|
+
wasAtBottom = false,
|
119
|
+
wasAtRight = false,
|
120
|
+
originalElement = elem.clone(false, false).empty(),
|
121
|
+
resizeEventsAdded = false,
|
122
|
+
mwEvent = $.fn.mwheelIntent ? 'mwheelIntent.jsp' : 'mousewheel.jsp';
|
123
|
+
|
124
|
+
var reinitialiseFn = function () {
|
125
|
+
// if size has changed then reinitialise
|
126
|
+
if (settings.resizeSensorDelay > 0) {
|
127
|
+
setTimeout(function () {
|
128
|
+
initialise(settings);
|
129
|
+
}, settings.resizeSensorDelay);
|
130
|
+
} else {
|
131
|
+
initialise(settings);
|
132
|
+
}
|
133
|
+
};
|
170
134
|
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
135
|
+
if (elem.css('box-sizing') === 'border-box') {
|
136
|
+
originalPadding = 0;
|
137
|
+
originalPaddingTotalWidth = 0;
|
138
|
+
} else {
|
139
|
+
originalPadding =
|
140
|
+
elem.css('paddingTop') +
|
141
|
+
' ' +
|
142
|
+
elem.css('paddingRight') +
|
143
|
+
' ' +
|
144
|
+
elem.css('paddingBottom') +
|
145
|
+
' ' +
|
146
|
+
elem.css('paddingLeft');
|
147
|
+
originalPaddingTotalWidth = (parseInt(elem.css('paddingLeft'), 10) || 0) + (parseInt(elem.css('paddingRight'), 10) || 0);
|
148
|
+
}
|
177
149
|
|
178
|
-
|
179
|
-
|
150
|
+
function initialise(s) {
|
151
|
+
var /*firstChild, lastChild, */ isMaintainingPositon,
|
152
|
+
lastContentX,
|
153
|
+
lastContentY,
|
154
|
+
hasContainingSpaceChanged,
|
155
|
+
originalScrollTop,
|
156
|
+
originalScrollLeft,
|
157
|
+
newPaneWidth,
|
158
|
+
newPaneHeight,
|
159
|
+
maintainAtBottom = false,
|
160
|
+
maintainAtRight = false;
|
161
|
+
|
162
|
+
settings = s;
|
163
|
+
lastContentX = 0;
|
164
|
+
lastContentY = 0;
|
165
|
+
|
166
|
+
if (pane === undefined) {
|
167
|
+
originalScrollTop = elem.scrollTop();
|
168
|
+
originalScrollLeft = elem.scrollLeft();
|
169
|
+
|
170
|
+
elem.css({
|
171
|
+
overflow: 'hidden',
|
172
|
+
padding: '0',
|
173
|
+
});
|
174
|
+
// TODO: Deal with where width/ height is 0 as it probably means the element is hidden and we should
|
175
|
+
// come back to it later and check once it is unhidden...
|
176
|
+
paneWidth = elem.innerWidth() + originalPaddingTotalWidth;
|
177
|
+
paneHeight = elem.innerHeight();
|
178
|
+
|
179
|
+
elem.width(paneWidth);
|
180
|
+
|
181
|
+
pane = $('<div class="jspPane"></div>').css('padding', originalPadding).append(elem.children());
|
182
|
+
container = $('<div class="jspContainer"></div>')
|
183
|
+
.css({
|
184
|
+
width: paneWidth + 'px',
|
185
|
+
height: paneHeight + 'px',
|
186
|
+
})
|
187
|
+
.append(pane)
|
188
|
+
.appendTo(elem);
|
189
|
+
|
190
|
+
/*
|
191
|
+
// Move any margins from the first and last children up to the container so they can still
|
192
|
+
// collapse with neighbouring elements as they would before jScrollPane
|
193
|
+
firstChild = pane.find(':first-child');
|
194
|
+
lastChild = pane.find(':last-child');
|
195
|
+
elem.css(
|
196
|
+
{
|
197
|
+
'margin-top': firstChild.css('margin-top'),
|
198
|
+
'margin-bottom': lastChild.css('margin-bottom')
|
199
|
+
}
|
200
|
+
);
|
201
|
+
firstChild.css('margin-top', 0);
|
202
|
+
lastChild.css('margin-bottom', 0);
|
203
|
+
*/
|
204
|
+
} else {
|
205
|
+
elem.css('width', '');
|
206
|
+
|
207
|
+
// To measure the required dimensions accurately, temporarily override the CSS positioning
|
208
|
+
// of the container and pane.
|
209
|
+
container.css({ width: 'auto', height: 'auto' });
|
210
|
+
pane.css('position', 'static');
|
211
|
+
|
212
|
+
newPaneWidth = elem.innerWidth() + originalPaddingTotalWidth;
|
213
|
+
newPaneHeight = elem.innerHeight();
|
214
|
+
pane.css('position', 'absolute');
|
215
|
+
|
216
|
+
maintainAtBottom = settings.stickToBottom && isCloseToBottom();
|
217
|
+
maintainAtRight = settings.stickToRight && isCloseToRight();
|
218
|
+
|
219
|
+
hasContainingSpaceChanged = newPaneWidth !== paneWidth || newPaneHeight !== paneHeight;
|
220
|
+
|
221
|
+
paneWidth = newPaneWidth;
|
222
|
+
paneHeight = newPaneHeight;
|
223
|
+
container.css({ width: paneWidth + 'px', height: paneHeight + 'px' });
|
224
|
+
|
225
|
+
// If nothing changed since last check...
|
226
|
+
if (!hasContainingSpaceChanged && previousContentWidth == contentWidth && pane.outerHeight() == contentHeight) {
|
227
|
+
elem.width(paneWidth);
|
228
|
+
return;
|
229
|
+
}
|
230
|
+
previousContentWidth = contentWidth;
|
180
231
|
|
181
|
-
|
182
|
-
|
232
|
+
pane.css('width', '');
|
233
|
+
elem.width(paneWidth);
|
183
234
|
|
184
|
-
|
185
|
-
|
186
|
-
contentWidth = s.contentWidth;
|
187
|
-
} else {
|
188
|
-
contentWidth = pane[0].scrollWidth;
|
189
|
-
}
|
190
|
-
contentHeight = pane[0].scrollHeight;
|
191
|
-
pane.css('overflow', '');
|
192
|
-
|
193
|
-
percentInViewH = contentWidth / paneWidth;
|
194
|
-
percentInViewV = contentHeight / paneHeight;
|
195
|
-
isScrollableV = percentInViewV > 1;
|
196
|
-
|
197
|
-
isScrollableH = percentInViewH > 1;
|
198
|
-
|
199
|
-
//console.log(paneWidth, paneHeight, contentWidth, contentHeight, percentInViewH, percentInViewV, isScrollableH, isScrollableV);
|
200
|
-
|
201
|
-
if (!(isScrollableH || isScrollableV)) {
|
202
|
-
elem.removeClass('jspScrollable');
|
203
|
-
pane.css({
|
204
|
-
top: 0,
|
205
|
-
left: 0,
|
206
|
-
width: container.width() - originalPaddingTotalWidth
|
207
|
-
});
|
208
|
-
removeMousewheel();
|
209
|
-
removeFocusHandler();
|
210
|
-
removeKeyboardNav();
|
211
|
-
removeClickOnTrack();
|
212
|
-
} else {
|
213
|
-
elem.addClass('jspScrollable');
|
214
|
-
|
215
|
-
isMaintainingPositon = settings.maintainPosition && (verticalDragPosition || horizontalDragPosition);
|
216
|
-
if (isMaintainingPositon) {
|
217
|
-
lastContentX = contentPositionX();
|
218
|
-
lastContentY = contentPositionY();
|
219
|
-
}
|
220
|
-
|
221
|
-
initialiseVerticalScroll();
|
222
|
-
initialiseHorizontalScroll();
|
223
|
-
resizeScrollbars();
|
224
|
-
|
225
|
-
if (isMaintainingPositon) {
|
226
|
-
scrollToX(maintainAtRight ? (contentWidth - paneWidth ) : lastContentX, false);
|
227
|
-
scrollToY(maintainAtBottom ? (contentHeight - paneHeight) : lastContentY, false);
|
228
|
-
}
|
229
|
-
|
230
|
-
initFocusHandler();
|
231
|
-
initMousewheel();
|
232
|
-
initTouch();
|
233
|
-
|
234
|
-
if (settings.enableKeyboardNavigation) {
|
235
|
-
initKeyboardNav();
|
236
|
-
}
|
237
|
-
if (settings.clickOnTrack) {
|
238
|
-
initClickOnTrack();
|
239
|
-
}
|
240
|
-
|
241
|
-
observeHash();
|
242
|
-
if (settings.hijackInternalLinks) {
|
243
|
-
hijackInternalLinks();
|
244
|
-
}
|
245
|
-
}
|
235
|
+
container.find('>.jspVerticalBar,>.jspHorizontalBar').remove().end();
|
236
|
+
}
|
246
237
|
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
238
|
+
pane.css('overflow', 'auto');
|
239
|
+
if (s.contentWidth) {
|
240
|
+
contentWidth = s.contentWidth;
|
241
|
+
} else {
|
242
|
+
contentWidth = pane[0].scrollWidth;
|
243
|
+
}
|
244
|
+
contentHeight = pane[0].scrollHeight;
|
245
|
+
pane.css('overflow', '');
|
246
|
+
|
247
|
+
percentInViewH = contentWidth / paneWidth;
|
248
|
+
percentInViewV = contentHeight / paneHeight;
|
249
|
+
isScrollableV = percentInViewV > 1 || settings.alwaysShowVScroll;
|
250
|
+
isScrollableH = percentInViewH > 1 || settings.alwaysShowHScroll;
|
251
|
+
|
252
|
+
if (!(isScrollableH || isScrollableV)) {
|
253
|
+
elem.removeClass('jspScrollable');
|
254
|
+
pane.css({
|
255
|
+
top: '0',
|
256
|
+
left: '0',
|
257
|
+
width: container.width() - originalPaddingTotalWidth,
|
258
|
+
});
|
259
|
+
removeMousewheel();
|
260
|
+
removeFocusHandler();
|
261
|
+
removeKeyboardNav();
|
262
|
+
removeClickOnTrack();
|
263
|
+
} else {
|
264
|
+
elem.addClass('jspScrollable');
|
265
|
+
|
266
|
+
isMaintainingPositon = settings.maintainPosition && (verticalDragPosition || horizontalDragPosition);
|
267
|
+
|
268
|
+
if (isMaintainingPositon) {
|
269
|
+
lastContentX = contentPositionX();
|
270
|
+
lastContentY = contentPositionY();
|
271
|
+
}
|
272
|
+
|
273
|
+
initialiseVerticalScroll();
|
274
|
+
initialiseHorizontalScroll();
|
275
|
+
resizeScrollbars();
|
276
|
+
|
277
|
+
if (settings.stickToBottom || settings.stickToRight) {
|
278
|
+
scrollToX(maintainAtRight ? contentWidth - paneWidth : lastContentX, false);
|
279
|
+
scrollToY(maintainAtBottom ? contentHeight - paneHeight : lastContentY, false);
|
280
|
+
}
|
281
|
+
|
282
|
+
initFocusHandler();
|
283
|
+
initMousewheel();
|
284
|
+
initTouch();
|
285
|
+
|
286
|
+
if (settings.enableKeyboardNavigation) {
|
287
|
+
initKeyboardNav();
|
288
|
+
}
|
289
|
+
if (settings.clickOnTrack) {
|
290
|
+
initClickOnTrack();
|
291
|
+
}
|
292
|
+
|
293
|
+
observeHash();
|
294
|
+
if (settings.hijackInternalLinks) {
|
295
|
+
hijackInternalLinks();
|
296
|
+
}
|
297
|
+
}
|
298
|
+
|
299
|
+
if (!settings.resizeSensor && settings.autoReinitialise && !reinitialiseInterval) {
|
300
|
+
reinitialiseInterval = setInterval(function () {
|
301
|
+
initialise(settings);
|
302
|
+
}, settings.autoReinitialiseDelay);
|
303
|
+
} else if (!settings.resizeSensor && !settings.autoReinitialise && reinitialiseInterval) {
|
304
|
+
clearInterval(reinitialiseInterval);
|
305
|
+
}
|
306
|
+
|
307
|
+
if (settings.resizeSensor && !resizeEventsAdded) {
|
308
|
+
// detect size change in content
|
309
|
+
detectSizeChanges(pane, reinitialiseFn);
|
310
|
+
|
311
|
+
// detect size changes of scroll element
|
312
|
+
detectSizeChanges(elem, reinitialiseFn);
|
313
|
+
|
314
|
+
// detect size changes of container
|
315
|
+
detectSizeChanges(elem.parent(), reinitialiseFn);
|
258
316
|
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
$('<div class="jspDragTop" />'),
|
275
|
-
$('<div class="jspDragBottom" />')
|
276
|
-
)
|
277
|
-
),
|
278
|
-
$('<div class="jspCap jspCapBottom" />')
|
279
|
-
)
|
280
|
-
);
|
281
|
-
|
282
|
-
verticalBar = container.find('>.jspVerticalBar');
|
283
|
-
verticalTrack = verticalBar.find('>.jspTrack');
|
284
|
-
verticalDrag = verticalTrack.find('>.jspDrag');
|
285
|
-
|
286
|
-
if (settings.showArrows) {
|
287
|
-
arrowUp = $('<a class="jspArrow jspArrowUp" />').bind(
|
288
|
-
'mousedown.jsp', getArrowScroll(0, -1)
|
289
|
-
).bind('click.jsp', nil);
|
290
|
-
arrowDown = $('<a class="jspArrow jspArrowDown" />').bind(
|
291
|
-
'mousedown.jsp', getArrowScroll(0, 1)
|
292
|
-
).bind('click.jsp', nil);
|
293
|
-
if (settings.arrowScrollOnHover) {
|
294
|
-
arrowUp.bind('mouseover.jsp', getArrowScroll(0, -1, arrowUp));
|
295
|
-
arrowDown.bind('mouseover.jsp', getArrowScroll(0, 1, arrowDown));
|
317
|
+
// add a reinit on window resize also for safety
|
318
|
+
window.addEventListener('resize', reinitialiseFn);
|
319
|
+
|
320
|
+
resizeEventsAdded = true;
|
321
|
+
}
|
322
|
+
|
323
|
+
if (originalScrollTop && elem.scrollTop(0)) {
|
324
|
+
scrollToY(originalScrollTop, false);
|
325
|
+
}
|
326
|
+
|
327
|
+
if (originalScrollLeft && elem.scrollLeft(0)) {
|
328
|
+
scrollToX(originalScrollLeft, false);
|
329
|
+
}
|
330
|
+
|
331
|
+
elem.trigger('jsp-initialised', [isScrollableH || isScrollableV]);
|
296
332
|
}
|
297
333
|
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
334
|
+
function detectSizeChanges(element, callback) {
|
335
|
+
// create resize event elements - based on resize sensor: https://github.com/flowkey/resize-sensor/
|
336
|
+
var resizeWidth, resizeHeight;
|
337
|
+
var resizeElement = document.createElement('div');
|
338
|
+
var resizeGrowElement = document.createElement('div');
|
339
|
+
var resizeGrowChildElement = document.createElement('div');
|
340
|
+
var resizeShrinkElement = document.createElement('div');
|
341
|
+
var resizeShrinkChildElement = document.createElement('div');
|
342
|
+
|
343
|
+
// add necessary styling
|
344
|
+
resizeElement.style.cssText =
|
345
|
+
'position: absolute; left: 0; top: 0; right: 0; bottom: 0; overflow: scroll; z-index: -1; visibility: hidden;';
|
346
|
+
resizeGrowElement.style.cssText =
|
347
|
+
'position: absolute; left: 0; top: 0; right: 0; bottom: 0; overflow: scroll; z-index: -1; visibility: hidden;';
|
348
|
+
resizeShrinkElement.style.cssText =
|
349
|
+
'position: absolute; left: 0; top: 0; right: 0; bottom: 0; overflow: scroll; z-index: -1; visibility: hidden;';
|
350
|
+
|
351
|
+
resizeGrowChildElement.style.cssText = 'position: absolute; left: 0; top: 0;';
|
352
|
+
resizeShrinkChildElement.style.cssText = 'position: absolute; left: 0; top: 0; width: 200%; height: 200%;';
|
353
|
+
|
354
|
+
// Create a function to programmatically update sizes
|
355
|
+
var updateSizes = function () {
|
356
|
+
resizeGrowChildElement.style.width = resizeGrowElement.offsetWidth + 10 + 'px';
|
357
|
+
resizeGrowChildElement.style.height = resizeGrowElement.offsetHeight + 10 + 'px';
|
358
|
+
|
359
|
+
resizeGrowElement.scrollLeft = resizeGrowElement.scrollWidth;
|
360
|
+
resizeGrowElement.scrollTop = resizeGrowElement.scrollHeight;
|
361
|
+
|
362
|
+
resizeShrinkElement.scrollLeft = resizeShrinkElement.scrollWidth;
|
363
|
+
resizeShrinkElement.scrollTop = resizeShrinkElement.scrollHeight;
|
364
|
+
|
365
|
+
resizeWidth = element.width();
|
366
|
+
resizeHeight = element.height();
|
367
|
+
};
|
368
|
+
|
369
|
+
// create functions to call when content grows
|
370
|
+
var onGrow = function () {
|
371
|
+
// check to see if the content has change size
|
372
|
+
if (element.width() > resizeWidth || element.height() > resizeHeight) {
|
373
|
+
// if size has changed then reinitialise
|
374
|
+
callback.apply(this, []);
|
335
375
|
}
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
$('<div class="jspDrag" />').append(
|
372
|
-
$('<div class="jspDragLeft" />'),
|
373
|
-
$('<div class="jspDragRight" />')
|
374
|
-
)
|
375
|
-
),
|
376
|
-
$('<div class="jspCap jspCapRight" />')
|
377
|
-
)
|
378
|
-
);
|
379
|
-
|
380
|
-
horizontalBar = container.find('>.jspHorizontalBar');
|
381
|
-
horizontalTrack = horizontalBar.find('>.jspTrack');
|
382
|
-
horizontalDrag = horizontalTrack.find('>.jspDrag');
|
383
|
-
|
384
|
-
if (settings.showArrows) {
|
385
|
-
arrowLeft = $('<a class="jspArrow jspArrowLeft" />').bind(
|
386
|
-
'mousedown.jsp', getArrowScroll(-1, 0)
|
387
|
-
).bind('click.jsp', nil);
|
388
|
-
arrowRight = $('<a class="jspArrow jspArrowRight" />').bind(
|
389
|
-
'mousedown.jsp', getArrowScroll(1, 0)
|
390
|
-
).bind('click.jsp', nil);
|
391
|
-
if (settings.arrowScrollOnHover) {
|
392
|
-
arrowLeft.bind('mouseover.jsp', getArrowScroll(-1, 0, arrowLeft));
|
393
|
-
arrowRight.bind('mouseover.jsp', getArrowScroll(1, 0, arrowRight));
|
376
|
+
// after reinitialising update sizes
|
377
|
+
updateSizes();
|
378
|
+
};
|
379
|
+
|
380
|
+
// create functions to call when content shrinks
|
381
|
+
var onShrink = function () {
|
382
|
+
// check to see if the content has change size
|
383
|
+
if (element.width() < resizeWidth || element.height() < resizeHeight) {
|
384
|
+
// if size has changed then reinitialise
|
385
|
+
callback.apply(this, []);
|
386
|
+
}
|
387
|
+
// after reinitialising update sizes
|
388
|
+
updateSizes();
|
389
|
+
};
|
390
|
+
|
391
|
+
// bind to scroll events
|
392
|
+
resizeGrowElement.addEventListener('scroll', onGrow.bind(this));
|
393
|
+
resizeShrinkElement.addEventListener('scroll', onShrink.bind(this));
|
394
|
+
|
395
|
+
// nest elements before adding to pane
|
396
|
+
resizeGrowElement.appendChild(resizeGrowChildElement);
|
397
|
+
resizeShrinkElement.appendChild(resizeShrinkChildElement);
|
398
|
+
|
399
|
+
resizeElement.appendChild(resizeGrowElement);
|
400
|
+
resizeElement.appendChild(resizeShrinkElement);
|
401
|
+
|
402
|
+
element.append(resizeElement);
|
403
|
+
|
404
|
+
// ensure parent element is not statically positioned
|
405
|
+
if (window.getComputedStyle(element[0], null).getPropertyValue('position') === 'static') {
|
406
|
+
element[0].style.position = 'relative';
|
407
|
+
}
|
408
|
+
|
409
|
+
// update sizes initially
|
410
|
+
updateSizes();
|
394
411
|
}
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
412
|
+
|
413
|
+
function initialiseVerticalScroll() {
|
414
|
+
if (isScrollableV) {
|
415
|
+
container.append(
|
416
|
+
$('<div class="jspVerticalBar"></div>').append(
|
417
|
+
$('<div class="jspCap jspCapTop"></div>'),
|
418
|
+
$('<div class="jspTrack"></div>').append(
|
419
|
+
$('<div class="jspDrag"></div>').append(
|
420
|
+
$('<div class="jspDragTop"></div>'),
|
421
|
+
$('<div class="jspDragBottom"></div>'),
|
422
|
+
),
|
423
|
+
),
|
424
|
+
$('<div class="jspCap jspCapBottom"></div>'),
|
425
|
+
),
|
426
|
+
);
|
427
|
+
|
428
|
+
verticalBar = container.find('>.jspVerticalBar');
|
429
|
+
verticalTrack = verticalBar.find('>.jspTrack');
|
430
|
+
verticalDrag = verticalTrack.find('>.jspDrag');
|
431
|
+
|
432
|
+
if (settings.showArrows) {
|
433
|
+
arrowUp = $('<a class="jspArrow jspArrowUp"></a>').on('mousedown.jsp', getArrowScroll(0, -1)).on('click.jsp', nil);
|
434
|
+
arrowDown = $('<a class="jspArrow jspArrowDown"></a>')
|
435
|
+
.on('mousedown.jsp', getArrowScroll(0, 1))
|
436
|
+
.on('click.jsp', nil);
|
437
|
+
if (settings.arrowScrollOnHover) {
|
438
|
+
arrowUp.on('mouseover.jsp', getArrowScroll(0, -1, arrowUp));
|
439
|
+
arrowDown.on('mouseover.jsp', getArrowScroll(0, 1, arrowDown));
|
440
|
+
}
|
441
|
+
|
442
|
+
appendArrows(verticalTrack, settings.verticalArrowPositions, arrowUp, arrowDown);
|
423
443
|
}
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
444
|
+
|
445
|
+
verticalTrackHeight = paneHeight;
|
446
|
+
container.find('>.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow').each(function () {
|
447
|
+
verticalTrackHeight -= $(this).outerHeight();
|
448
|
+
});
|
449
|
+
|
450
|
+
verticalDrag
|
451
|
+
.on('mouseenter', function () {
|
452
|
+
verticalDrag.addClass('jspHover');
|
453
|
+
})
|
454
|
+
.on('mouseleave', function () {
|
455
|
+
verticalDrag.removeClass('jspHover');
|
456
|
+
})
|
457
|
+
.on('mousedown.jsp', function (e) {
|
458
|
+
// Stop IE from allowing text selection
|
459
|
+
$('html').on('dragstart.jsp selectstart.jsp', nil);
|
460
|
+
|
461
|
+
verticalDrag.addClass('jspActive');
|
462
|
+
|
463
|
+
var startY = e.pageY - verticalDrag.position().top;
|
464
|
+
|
465
|
+
$('html')
|
466
|
+
.on('mousemove.jsp', function (e) {
|
467
|
+
positionDragY(e.pageY - startY, false);
|
468
|
+
})
|
469
|
+
.on('mouseup.jsp mouseleave.jsp', cancelDrag);
|
470
|
+
return false;
|
471
|
+
});
|
472
|
+
sizeVerticalScrollbar();
|
473
|
+
}
|
439
474
|
}
|
440
|
-
);
|
441
|
-
|
442
|
-
horizontalTrack.width(horizontalTrackWidth + 'px');
|
443
|
-
horizontalDragPosition = 0;
|
444
|
-
}
|
445
|
-
|
446
|
-
function resizeScrollbars()
|
447
|
-
{
|
448
|
-
if (isScrollableH && isScrollableV) {
|
449
|
-
var horizontalTrackHeight = horizontalTrack.outerHeight(),
|
450
|
-
verticalTrackWidth = verticalTrack.outerWidth();
|
451
|
-
verticalTrackHeight -= horizontalTrackHeight;
|
452
|
-
$(horizontalBar).find('>.jspCap:visible,>.jspArrow').each(
|
453
|
-
function()
|
454
|
-
{
|
455
|
-
horizontalTrackWidth += $(this).outerWidth();
|
456
|
-
}
|
457
|
-
);
|
458
|
-
horizontalTrackWidth -= verticalTrackWidth;
|
459
|
-
paneHeight -= verticalTrackWidth;
|
460
|
-
paneWidth -= horizontalTrackHeight;
|
461
|
-
horizontalTrack.parent().append(
|
462
|
-
$('<div class="jspCorner" />').css('width', horizontalTrackHeight + 'px')
|
463
|
-
);
|
464
|
-
sizeVerticalScrollbar();
|
465
|
-
sizeHorizontalScrollbar();
|
466
|
-
}
|
467
|
-
// reflow content
|
468
|
-
if (isScrollableH) {
|
469
|
-
pane.width((container.outerWidth() - originalPaddingTotalWidth) + 'px');
|
470
|
-
}
|
471
|
-
contentHeight = pane.outerHeight();
|
472
|
-
percentInViewV = contentHeight / paneHeight;
|
473
|
-
|
474
|
-
if (isScrollableH) {
|
475
|
-
horizontalDragWidth = Math.ceil(1 / percentInViewH * horizontalTrackWidth);
|
476
|
-
if (horizontalDragWidth > settings.horizontalDragMaxWidth) {
|
477
|
-
horizontalDragWidth = settings.horizontalDragMaxWidth;
|
478
|
-
} else if (horizontalDragWidth < settings.horizontalDragMinWidth) {
|
479
|
-
horizontalDragWidth = settings.horizontalDragMinWidth;
|
480
|
-
}
|
481
|
-
horizontalDrag.width(horizontalDragWidth + 'px');
|
482
|
-
dragMaxX = horizontalTrackWidth - horizontalDragWidth;
|
483
|
-
_positionDragX(horizontalDragPosition); // To update the state for the arrow buttons
|
484
|
-
}
|
485
|
-
if (isScrollableV) {
|
486
|
-
verticalDragHeight = Math.ceil(1 / percentInViewV * verticalTrackHeight);
|
487
|
-
if (verticalDragHeight > settings.verticalDragMaxHeight) {
|
488
|
-
verticalDragHeight = settings.verticalDragMaxHeight;
|
489
|
-
} else if (verticalDragHeight < settings.verticalDragMinHeight) {
|
490
|
-
verticalDragHeight = settings.verticalDragMinHeight;
|
491
|
-
}
|
492
|
-
verticalDrag.height(verticalDragHeight + 'px');
|
493
|
-
dragMaxY = verticalTrackHeight - verticalDragHeight;
|
494
|
-
_positionDragY(verticalDragPosition); // To update the state for the arrow buttons
|
495
|
-
}
|
496
|
-
}
|
497
475
|
|
498
|
-
|
499
|
-
|
500
|
-
|
476
|
+
function sizeVerticalScrollbar() {
|
477
|
+
verticalTrack.height(verticalTrackHeight + 'px');
|
478
|
+
verticalDragPosition = 0;
|
479
|
+
scrollbarWidth = settings.verticalGutter + verticalTrack.outerWidth();
|
501
480
|
|
502
|
-
|
503
|
-
|
504
|
-
if (p == "os") {
|
505
|
-
p = /Mac/.test(navigator.platform) ? "after" : "split";
|
506
|
-
}
|
507
|
-
if (p == p1) {
|
508
|
-
p2 = p;
|
509
|
-
} else if (p == p2) {
|
510
|
-
p1 = p;
|
511
|
-
aTemp = a1;
|
512
|
-
a1 = a2;
|
513
|
-
a2 = aTemp;
|
514
|
-
}
|
481
|
+
// Make the pane thinner to allow for the vertical scrollbar
|
482
|
+
pane.width(paneWidth - scrollbarWidth - originalPaddingTotalWidth);
|
515
483
|
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
484
|
+
// Add margin to the left of the pane if scrollbars are on that side (to position
|
485
|
+
// the scrollbar on the left or right set it's left or right property in CSS)
|
486
|
+
try {
|
487
|
+
if (verticalBar.position().left === 0) {
|
488
|
+
pane.css('margin-left', scrollbarWidth + 'px');
|
489
|
+
}
|
490
|
+
} catch (err) {}
|
491
|
+
}
|
492
|
+
|
493
|
+
function initialiseHorizontalScroll() {
|
494
|
+
if (isScrollableH) {
|
495
|
+
container.append(
|
496
|
+
$('<div class="jspHorizontalBar"></div>').append(
|
497
|
+
$('<div class="jspCap jspCapLeft"></div>'),
|
498
|
+
$('<div class="jspTrack"></div>').append(
|
499
|
+
$('<div class="jspDrag"></div>').append(
|
500
|
+
$('<div class="jspDragLeft"></div>'),
|
501
|
+
$('<div class="jspDragRight"></div>'),
|
502
|
+
),
|
503
|
+
),
|
504
|
+
$('<div class="jspCap jspCapRight"></div>'),
|
505
|
+
),
|
506
|
+
);
|
507
|
+
|
508
|
+
horizontalBar = container.find('>.jspHorizontalBar');
|
509
|
+
horizontalTrack = horizontalBar.find('>.jspTrack');
|
510
|
+
horizontalDrag = horizontalTrack.find('>.jspDrag');
|
511
|
+
|
512
|
+
if (settings.showArrows) {
|
513
|
+
arrowLeft = $('<a class="jspArrow jspArrowLeft"></a>')
|
514
|
+
.on('mousedown.jsp', getArrowScroll(-1, 0))
|
515
|
+
.on('click.jsp', nil);
|
516
|
+
arrowRight = $('<a class="jspArrow jspArrowRight"></a>')
|
517
|
+
.on('mousedown.jsp', getArrowScroll(1, 0))
|
518
|
+
.on('click.jsp', nil);
|
519
|
+
if (settings.arrowScrollOnHover) {
|
520
|
+
arrowLeft.on('mouseover.jsp', getArrowScroll(-1, 0, arrowLeft));
|
521
|
+
arrowRight.on('mouseover.jsp', getArrowScroll(1, 0, arrowRight));
|
522
|
+
}
|
523
|
+
appendArrows(horizontalTrack, settings.horizontalArrowPositions, arrowLeft, arrowRight);
|
524
|
+
}
|
547
525
|
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
526
|
+
horizontalDrag
|
527
|
+
.on('mouseenter', function () {
|
528
|
+
horizontalDrag.addClass('jspHover');
|
529
|
+
})
|
530
|
+
.on('mouseleave', function () {
|
531
|
+
horizontalDrag.removeClass('jspHover');
|
532
|
+
})
|
533
|
+
.on('mousedown.jsp', function (e) {
|
534
|
+
// Stop IE from allowing text selection
|
535
|
+
$('html').on('dragstart.jsp selectstart.jsp', nil);
|
536
|
+
|
537
|
+
horizontalDrag.addClass('jspActive');
|
538
|
+
|
539
|
+
var startX = e.pageX - horizontalDrag.position().left;
|
540
|
+
|
541
|
+
$('html')
|
542
|
+
.on('mousemove.jsp', function (e) {
|
543
|
+
positionDragX(e.pageX - startX, false);
|
544
|
+
})
|
545
|
+
.on('mouseup.jsp mouseleave.jsp', cancelDrag);
|
546
|
+
return false;
|
547
|
+
});
|
548
|
+
horizontalTrackWidth = container.innerWidth();
|
549
|
+
sizeHorizontalScrollbar();
|
550
|
+
}
|
560
551
|
}
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
if (
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
552
|
+
|
553
|
+
function sizeHorizontalScrollbar() {
|
554
|
+
container.find('>.jspHorizontalBar>.jspCap:visible,>.jspHorizontalBar>.jspArrow').each(function () {
|
555
|
+
horizontalTrackWidth -= $(this).outerWidth();
|
556
|
+
});
|
557
|
+
|
558
|
+
horizontalTrack.width(horizontalTrackWidth + 'px');
|
559
|
+
horizontalDragPosition = 0;
|
560
|
+
}
|
561
|
+
|
562
|
+
function resizeScrollbars() {
|
563
|
+
if (isScrollableH && isScrollableV) {
|
564
|
+
var horizontalTrackHeight = horizontalTrack.outerHeight(),
|
565
|
+
verticalTrackWidth = verticalTrack.outerWidth();
|
566
|
+
verticalTrackHeight -= horizontalTrackHeight;
|
567
|
+
$(horizontalBar)
|
568
|
+
.find('>.jspCap:visible,>.jspArrow')
|
569
|
+
.each(function () {
|
570
|
+
horizontalTrackWidth += $(this).outerWidth();
|
571
|
+
});
|
572
|
+
horizontalTrackWidth -= verticalTrackWidth;
|
573
|
+
paneHeight -= verticalTrackWidth;
|
574
|
+
paneWidth -= horizontalTrackHeight;
|
575
|
+
horizontalTrack.parent().append($('<div class="jspCorner"></div>').css('width', horizontalTrackHeight + 'px'));
|
576
|
+
sizeVerticalScrollbar();
|
577
|
+
sizeHorizontalScrollbar();
|
578
|
+
}
|
579
|
+
// reflow content
|
580
|
+
if (isScrollableH) {
|
581
|
+
pane.width(container.outerWidth() - originalPaddingTotalWidth + 'px');
|
582
|
+
}
|
583
|
+
contentHeight = pane.outerHeight();
|
584
|
+
percentInViewV = contentHeight / paneHeight;
|
585
|
+
|
586
|
+
if (isScrollableH) {
|
587
|
+
horizontalDragWidth = Math.ceil((1 / percentInViewH) * horizontalTrackWidth);
|
588
|
+
if (horizontalDragWidth > settings.horizontalDragMaxWidth) {
|
589
|
+
horizontalDragWidth = settings.horizontalDragMaxWidth;
|
590
|
+
} else if (horizontalDragWidth < settings.horizontalDragMinWidth) {
|
591
|
+
horizontalDragWidth = settings.horizontalDragMinWidth;
|
592
|
+
}
|
593
|
+
horizontalDrag.css('width', horizontalDragWidth + 'px');
|
594
|
+
dragMaxX = horizontalTrackWidth - horizontalDragWidth;
|
595
|
+
_positionDragX(horizontalDragPosition); // To update the state for the arrow buttons
|
596
|
+
}
|
597
|
+
if (isScrollableV) {
|
598
|
+
verticalDragHeight = Math.ceil((1 / percentInViewV) * verticalTrackHeight);
|
599
|
+
if (verticalDragHeight > settings.verticalDragMaxHeight) {
|
600
|
+
verticalDragHeight = settings.verticalDragMaxHeight;
|
601
|
+
} else if (verticalDragHeight < settings.verticalDragMinHeight) {
|
602
|
+
verticalDragHeight = settings.verticalDragMinHeight;
|
603
|
+
}
|
604
|
+
verticalDrag.css('height', verticalDragHeight + 'px');
|
605
|
+
dragMaxY = verticalTrackHeight - verticalDragHeight;
|
606
|
+
_positionDragY(verticalDragPosition); // To update the state for the arrow buttons
|
607
|
+
}
|
608
|
+
}
|
609
|
+
|
610
|
+
function appendArrows(ele, p, a1, a2) {
|
611
|
+
var p1 = 'before',
|
612
|
+
p2 = 'after',
|
613
|
+
aTemp;
|
614
|
+
|
615
|
+
// Sniff for mac... Is there a better way to determine whether the arrows would naturally appear
|
616
|
+
// at the top or the bottom of the bar?
|
617
|
+
if (p == 'os') {
|
618
|
+
p = /Mac/.test(navigator.platform) ? 'after' : 'split';
|
619
|
+
}
|
620
|
+
if (p == p1) {
|
621
|
+
p2 = p;
|
622
|
+
} else if (p == p2) {
|
623
|
+
p1 = p;
|
624
|
+
aTemp = a1;
|
625
|
+
a1 = a2;
|
626
|
+
a2 = aTemp;
|
627
|
+
}
|
628
|
+
|
629
|
+
ele[p1](a1)[p2](a2);
|
630
|
+
}
|
631
|
+
|
632
|
+
function getArrowScroll(dirX, dirY, ele) {
|
633
|
+
return function () {
|
634
|
+
arrowScroll(dirX, dirY, this, ele);
|
635
|
+
this.blur();
|
636
|
+
return false;
|
637
|
+
};
|
638
|
+
}
|
639
|
+
|
640
|
+
function arrowScroll(dirX, dirY, arrow, ele) {
|
641
|
+
arrow = $(arrow).addClass('jspActive');
|
642
|
+
|
643
|
+
var eve,
|
644
|
+
scrollTimeout,
|
645
|
+
isFirst = true,
|
646
|
+
doScroll = function () {
|
647
|
+
if (dirX !== 0) {
|
648
|
+
jsp.scrollByX(dirX * settings.arrowButtonSpeed);
|
649
|
+
}
|
650
|
+
if (dirY !== 0) {
|
651
|
+
jsp.scrollByY(dirY * settings.arrowButtonSpeed);
|
599
652
|
}
|
600
|
-
scrollTimeout = setTimeout(doScroll, isFirst ? settings.initialDelay : settings.
|
653
|
+
scrollTimeout = setTimeout(doScroll, isFirst ? settings.initialDelay : settings.arrowRepeatFreq);
|
601
654
|
isFirst = false;
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
655
|
+
};
|
656
|
+
|
657
|
+
doScroll();
|
658
|
+
|
659
|
+
eve = ele ? 'mouseout.jsp' : 'mouseup.jsp';
|
660
|
+
ele = ele || $('html');
|
661
|
+
ele.on(eve, function () {
|
662
|
+
arrow.removeClass('jspActive');
|
663
|
+
if (scrollTimeout) {
|
664
|
+
clearTimeout(scrollTimeout);
|
665
|
+
}
|
666
|
+
scrollTimeout = null;
|
667
|
+
ele.off(eve);
|
668
|
+
});
|
669
|
+
}
|
670
|
+
|
671
|
+
function initClickOnTrack() {
|
672
|
+
removeClickOnTrack();
|
673
|
+
if (isScrollableV) {
|
674
|
+
verticalTrack.on('mousedown.jsp', function (e) {
|
675
|
+
if (e.originalTarget === undefined || e.originalTarget == e.currentTarget) {
|
676
|
+
var clickedTrack = $(this),
|
677
|
+
offset = clickedTrack.offset(),
|
678
|
+
direction = e.pageY - offset.top - verticalDragPosition,
|
679
|
+
scrollTimeout,
|
680
|
+
isFirst = true,
|
681
|
+
doScroll = function () {
|
682
|
+
var offset = clickedTrack.offset(),
|
683
|
+
pos = e.pageY - offset.top - verticalDragHeight / 2,
|
684
|
+
contentDragY = paneHeight * settings.scrollPagePercent,
|
685
|
+
dragY = (dragMaxY * contentDragY) / (contentHeight - paneHeight);
|
686
|
+
if (direction < 0) {
|
687
|
+
if (verticalDragPosition - dragY > pos) {
|
688
|
+
jsp.scrollByY(-contentDragY);
|
689
|
+
} else {
|
690
|
+
positionDragY(pos);
|
691
|
+
}
|
692
|
+
} else if (direction > 0) {
|
693
|
+
if (verticalDragPosition + dragY < pos) {
|
694
|
+
jsp.scrollByY(contentDragY);
|
695
|
+
} else {
|
696
|
+
positionDragY(pos);
|
697
|
+
}
|
698
|
+
} else {
|
699
|
+
cancelClick();
|
700
|
+
return;
|
701
|
+
}
|
702
|
+
scrollTimeout = setTimeout(doScroll, isFirst ? settings.initialDelay : settings.trackClickRepeatFreq);
|
703
|
+
isFirst = false;
|
704
|
+
},
|
705
|
+
cancelClick = function () {
|
706
|
+
if (scrollTimeout) {
|
707
|
+
clearTimeout(scrollTimeout);
|
708
|
+
}
|
709
|
+
scrollTimeout = null;
|
710
|
+
$(document).off('mouseup.jsp', cancelClick);
|
711
|
+
};
|
712
|
+
doScroll();
|
713
|
+
$(document).on('mouseup.jsp', cancelClick);
|
714
|
+
return false;
|
715
|
+
}
|
716
|
+
});
|
612
717
|
}
|
613
|
-
}
|
614
|
-
);
|
615
|
-
}
|
616
718
|
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
719
|
+
if (isScrollableH) {
|
720
|
+
horizontalTrack.on('mousedown.jsp', function (e) {
|
721
|
+
if (e.originalTarget === undefined || e.originalTarget == e.currentTarget) {
|
722
|
+
var clickedTrack = $(this),
|
723
|
+
offset = clickedTrack.offset(),
|
724
|
+
direction = e.pageX - offset.left - horizontalDragPosition,
|
725
|
+
scrollTimeout,
|
726
|
+
isFirst = true,
|
727
|
+
doScroll = function () {
|
728
|
+
var offset = clickedTrack.offset(),
|
729
|
+
pos = e.pageX - offset.left - horizontalDragWidth / 2,
|
730
|
+
contentDragX = paneWidth * settings.scrollPagePercent,
|
731
|
+
dragX = (dragMaxX * contentDragX) / (contentWidth - paneWidth);
|
732
|
+
if (direction < 0) {
|
733
|
+
if (horizontalDragPosition - dragX > pos) {
|
734
|
+
jsp.scrollByX(-contentDragX);
|
735
|
+
} else {
|
736
|
+
positionDragX(pos);
|
737
|
+
}
|
738
|
+
} else if (direction > 0) {
|
739
|
+
if (horizontalDragPosition + dragX < pos) {
|
740
|
+
jsp.scrollByX(contentDragX);
|
741
|
+
} else {
|
742
|
+
positionDragX(pos);
|
743
|
+
}
|
744
|
+
} else {
|
745
|
+
cancelClick();
|
746
|
+
return;
|
747
|
+
}
|
748
|
+
scrollTimeout = setTimeout(doScroll, isFirst ? settings.initialDelay : settings.trackClickRepeatFreq);
|
749
|
+
isFirst = false;
|
750
|
+
},
|
751
|
+
cancelClick = function () {
|
752
|
+
if (scrollTimeout) {
|
753
|
+
clearTimeout(scrollTimeout);
|
754
|
+
}
|
755
|
+
scrollTimeout = null;
|
756
|
+
$(document).off('mouseup.jsp', cancelClick);
|
757
|
+
};
|
758
|
+
doScroll();
|
759
|
+
$(document).on('mouseup.jsp', cancelClick);
|
760
|
+
return false;
|
649
761
|
}
|
650
|
-
|
651
|
-
isFirst = false;
|
652
|
-
},
|
653
|
-
cancelClick = function()
|
654
|
-
{
|
655
|
-
scrollTimeout && clearTimeout(scrollTimeout);
|
656
|
-
scrollTimeout = null;
|
657
|
-
$(document).unbind('mouseup.jsp', cancelClick);
|
658
|
-
};
|
659
|
-
doScroll();
|
660
|
-
$(document).bind('mouseup.jsp', cancelClick);
|
661
|
-
return false;
|
762
|
+
});
|
662
763
|
}
|
663
|
-
|
664
|
-
);
|
665
|
-
}
|
666
|
-
}
|
764
|
+
}
|
667
765
|
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
}
|
766
|
+
function removeClickOnTrack() {
|
767
|
+
if (horizontalTrack) {
|
768
|
+
horizontalTrack.off('mousedown.jsp');
|
769
|
+
}
|
770
|
+
if (verticalTrack) {
|
771
|
+
verticalTrack.off('mousedown.jsp');
|
772
|
+
}
|
773
|
+
}
|
677
774
|
|
678
|
-
|
679
|
-
|
680
|
-
$('html').unbind('dragstart.jsp selectstart.jsp mousemove.jsp mouseup.jsp mouseleave.jsp');
|
775
|
+
function cancelDrag() {
|
776
|
+
$('html').off('dragstart.jsp selectstart.jsp mousemove.jsp mouseup.jsp mouseleave.jsp');
|
681
777
|
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
778
|
+
if (verticalDrag) {
|
779
|
+
verticalDrag.removeClass('jspActive');
|
780
|
+
}
|
781
|
+
if (horizontalDrag) {
|
782
|
+
horizontalDrag.removeClass('jspActive');
|
783
|
+
}
|
784
|
+
}
|
689
785
|
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
}
|
786
|
+
function positionDragY(destY, animate) {
|
787
|
+
if (!isScrollableV) {
|
788
|
+
return;
|
789
|
+
}
|
790
|
+
if (destY < 0) {
|
791
|
+
destY = 0;
|
792
|
+
} else if (destY > dragMaxY) {
|
793
|
+
destY = dragMaxY;
|
794
|
+
}
|
700
795
|
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
}
|
705
|
-
if (animate) {
|
706
|
-
jsp.animate(verticalDrag, 'top', destY, _positionDragY);
|
707
|
-
} else {
|
708
|
-
verticalDrag.css('top', destY);
|
709
|
-
_positionDragY(destY);
|
710
|
-
}
|
796
|
+
// allow for devs to prevent the JSP from being scrolled
|
797
|
+
var willScrollYEvent = new $.Event('jsp-will-scroll-y');
|
798
|
+
elem.trigger(willScrollYEvent, [destY]);
|
711
799
|
|
712
|
-
|
800
|
+
if (willScrollYEvent.isDefaultPrevented()) {
|
801
|
+
return;
|
802
|
+
}
|
713
803
|
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
804
|
+
var tmpVerticalDragPosition = destY || 0;
|
805
|
+
|
806
|
+
var isAtTop = tmpVerticalDragPosition === 0,
|
807
|
+
isAtBottom = tmpVerticalDragPosition == dragMaxY,
|
808
|
+
percentScrolled = destY / dragMaxY,
|
809
|
+
destTop = -percentScrolled * (contentHeight - paneHeight);
|
810
|
+
|
811
|
+
// can't just check if(animate) because false is a valid value that could be passed in...
|
812
|
+
if (animate === undefined) {
|
813
|
+
animate = settings.animateScroll;
|
814
|
+
}
|
815
|
+
if (animate) {
|
816
|
+
jsp.animate(verticalDrag, 'top', destY, _positionDragY, function () {
|
817
|
+
elem.trigger('jsp-user-scroll-y', [-destTop, isAtTop, isAtBottom]);
|
818
|
+
});
|
819
|
+
} else {
|
820
|
+
verticalDrag.css('top', destY + 'px');
|
821
|
+
_positionDragY(destY);
|
822
|
+
elem.trigger('jsp-user-scroll-y', [-destTop, isAtTop, isAtBottom]);
|
823
|
+
}
|
824
|
+
}
|
719
825
|
|
720
|
-
|
721
|
-
|
826
|
+
function _positionDragY(destY) {
|
827
|
+
if (destY === undefined) {
|
828
|
+
destY = verticalDrag.position().top;
|
829
|
+
}
|
722
830
|
|
723
|
-
|
724
|
-
|
725
|
-
percentScrolled = destY/ dragMaxY,
|
726
|
-
destTop = -percentScrolled * (contentHeight - paneHeight);
|
831
|
+
container.scrollTop(0);
|
832
|
+
verticalDragPosition = destY || 0;
|
727
833
|
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
}
|
834
|
+
var isAtTop = verticalDragPosition === 0,
|
835
|
+
isAtBottom = verticalDragPosition == dragMaxY,
|
836
|
+
percentScrolled = destY / dragMaxY,
|
837
|
+
destTop = -percentScrolled * (contentHeight - paneHeight);
|
733
838
|
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
839
|
+
if (wasAtTop != isAtTop || wasAtBottom != isAtBottom) {
|
840
|
+
wasAtTop = isAtTop;
|
841
|
+
wasAtBottom = isAtBottom;
|
842
|
+
elem.trigger('jsp-arrow-change', [wasAtTop, wasAtBottom, wasAtLeft, wasAtRight]);
|
843
|
+
}
|
738
844
|
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
}
|
744
|
-
if (destX < 0) {
|
745
|
-
destX = 0;
|
746
|
-
} else if (destX > dragMaxX) {
|
747
|
-
destX = dragMaxX;
|
748
|
-
}
|
845
|
+
updateVerticalArrows(isAtTop, isAtBottom);
|
846
|
+
pane.css('top', destTop + 'px');
|
847
|
+
elem.trigger('jsp-scroll-y', [-destTop, isAtTop, isAtBottom]).trigger('scroll');
|
848
|
+
}
|
749
849
|
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
}
|
850
|
+
function positionDragX(destX, animate) {
|
851
|
+
if (!isScrollableH) {
|
852
|
+
return;
|
853
|
+
}
|
854
|
+
if (destX < 0) {
|
855
|
+
destX = 0;
|
856
|
+
} else if (destX > dragMaxX) {
|
857
|
+
destX = dragMaxX;
|
858
|
+
}
|
760
859
|
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
destX = horizontalDrag.position().left;
|
765
|
-
}
|
860
|
+
// allow for devs to prevent the JSP from being scrolled
|
861
|
+
var willScrollXEvent = new $.Event('jsp-will-scroll-x');
|
862
|
+
elem.trigger(willScrollXEvent, [destX]);
|
766
863
|
|
767
|
-
|
768
|
-
|
864
|
+
if (willScrollXEvent.isDefaultPrevented()) {
|
865
|
+
return;
|
866
|
+
}
|
769
867
|
|
770
|
-
|
771
|
-
isAtRight = horizontalDragPosition == dragMaxX,
|
772
|
-
percentScrolled = destX / dragMaxX,
|
773
|
-
destLeft = -percentScrolled * (contentWidth - paneWidth);
|
868
|
+
var tmpHorizontalDragPosition = destX || 0;
|
774
869
|
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
}
|
870
|
+
var isAtLeft = tmpHorizontalDragPosition === 0,
|
871
|
+
isAtRight = tmpHorizontalDragPosition == dragMaxX,
|
872
|
+
percentScrolled = destX / dragMaxX,
|
873
|
+
destLeft = -percentScrolled * (contentWidth - paneWidth);
|
780
874
|
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
875
|
+
if (animate === undefined) {
|
876
|
+
animate = settings.animateScroll;
|
877
|
+
}
|
878
|
+
if (animate) {
|
879
|
+
jsp.animate(horizontalDrag, 'left', destX, _positionDragX, function () {
|
880
|
+
elem.trigger('jsp-user-scroll-x', [-destLeft, isAtLeft, isAtRight]);
|
881
|
+
});
|
882
|
+
} else {
|
883
|
+
horizontalDrag.css('left', destX + 'px');
|
884
|
+
_positionDragX(destX);
|
885
|
+
elem.trigger('jsp-user-scroll-x', [-destLeft, isAtLeft, isAtRight]);
|
886
|
+
}
|
887
|
+
}
|
785
888
|
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
arrowDown[isAtBottom ? 'addClass' : 'removeClass']('jspDisabled');
|
791
|
-
}
|
792
|
-
}
|
889
|
+
function _positionDragX(destX) {
|
890
|
+
if (destX === undefined) {
|
891
|
+
destX = horizontalDrag.position().left;
|
892
|
+
}
|
793
893
|
|
794
|
-
|
795
|
-
|
796
|
-
if (settings.showArrows) {
|
797
|
-
arrowLeft[isAtLeft ? 'addClass' : 'removeClass']('jspDisabled');
|
798
|
-
arrowRight[isAtRight ? 'addClass' : 'removeClass']('jspDisabled');
|
799
|
-
}
|
800
|
-
}
|
801
|
-
|
802
|
-
function scrollToY(destY, animate)
|
803
|
-
{
|
804
|
-
var percentScrolled = destY / (contentHeight - paneHeight);
|
805
|
-
positionDragY(percentScrolled * dragMaxY, animate);
|
806
|
-
}
|
807
|
-
|
808
|
-
function scrollToX(destX, animate)
|
809
|
-
{
|
810
|
-
var percentScrolled = destX / (contentWidth - paneWidth);
|
811
|
-
positionDragX(percentScrolled * dragMaxX, animate);
|
812
|
-
}
|
813
|
-
|
814
|
-
function scrollToElement(ele, stickToTop, animate)
|
815
|
-
{
|
816
|
-
var e, eleHeight, eleWidth, eleTop = 0, eleLeft = 0, viewportTop, viewportLeft, maxVisibleEleTop, maxVisibleEleLeft, destY, destX;
|
817
|
-
|
818
|
-
// Legal hash values aren't necessarily legal jQuery selectors so we need to catch any
|
819
|
-
// errors from the lookup...
|
820
|
-
try {
|
821
|
-
e = $(ele);
|
822
|
-
} catch (err) {
|
823
|
-
return;
|
824
|
-
}
|
825
|
-
eleHeight = e.outerHeight();
|
826
|
-
eleWidth= e.outerWidth();
|
827
|
-
|
828
|
-
container.scrollTop(0);
|
829
|
-
container.scrollLeft(0);
|
830
|
-
|
831
|
-
// loop through parents adding the offset top of any elements that are relatively positioned between
|
832
|
-
// the focused element and the jspPane so we can get the true distance from the top
|
833
|
-
// of the focused element to the top of the scrollpane...
|
834
|
-
while (!e.is('.jspPane')) {
|
835
|
-
eleTop += e.position().top;
|
836
|
-
eleLeft += e.position().left;
|
837
|
-
e = e.offsetParent();
|
838
|
-
if (/^body|html$/i.test(e[0].nodeName)) {
|
839
|
-
// we ended up too high in the document structure. Quit!
|
840
|
-
return;
|
841
|
-
}
|
842
|
-
}
|
894
|
+
container.scrollTop(0);
|
895
|
+
horizontalDragPosition = destX || 0;
|
843
896
|
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
} else if (eleTop + eleHeight > maxVisibleEleTop) { // element is below viewport
|
849
|
-
destY = eleTop - paneHeight + eleHeight + settings.horizontalGutter;
|
850
|
-
}
|
851
|
-
if (!isNaN(destY)) {
|
852
|
-
scrollToY(destY, animate);
|
853
|
-
}
|
897
|
+
var isAtLeft = horizontalDragPosition === 0,
|
898
|
+
isAtRight = horizontalDragPosition == dragMaxX,
|
899
|
+
percentScrolled = destX / dragMaxX,
|
900
|
+
destLeft = -percentScrolled * (contentWidth - paneWidth);
|
854
901
|
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
destX = eleLeft - paneWidth + eleWidth + settings.horizontalGutter;
|
861
|
-
}
|
862
|
-
if (!isNaN(destX)) {
|
863
|
-
scrollToX(destX, animate);
|
864
|
-
}
|
902
|
+
if (wasAtLeft != isAtLeft || wasAtRight != isAtRight) {
|
903
|
+
wasAtLeft = isAtLeft;
|
904
|
+
wasAtRight = isAtRight;
|
905
|
+
elem.trigger('jsp-arrow-change', [wasAtTop, wasAtBottom, wasAtLeft, wasAtRight]);
|
906
|
+
}
|
865
907
|
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
{
|
870
|
-
return -pane.position().left;
|
871
|
-
}
|
872
|
-
|
873
|
-
function contentPositionY()
|
874
|
-
{
|
875
|
-
return -pane.position().top;
|
876
|
-
}
|
877
|
-
|
878
|
-
function isCloseToBottom()
|
879
|
-
{
|
880
|
-
var scrollableHeight = contentHeight - paneHeight;
|
881
|
-
return (scrollableHeight > 20) && (scrollableHeight - contentPositionY() < 10);
|
882
|
-
}
|
883
|
-
|
884
|
-
function isCloseToRight()
|
885
|
-
{
|
886
|
-
var scrollableWidth = contentWidth - paneWidth;
|
887
|
-
return (scrollableWidth > 20) && (scrollableWidth - contentPositionX() < 10);
|
888
|
-
}
|
889
|
-
|
890
|
-
function initMousewheel()
|
891
|
-
{
|
892
|
-
container.unbind(mwEvent).bind(
|
893
|
-
mwEvent,
|
894
|
-
function (event, delta, deltaX, deltaY) {
|
895
|
-
|
896
|
-
if (!horizontalDragPosition) horizontalDragPosition = 0;
|
897
|
-
if (!verticalDragPosition) verticalDragPosition = 0;
|
898
|
-
|
899
|
-
var dX = horizontalDragPosition, dY = verticalDragPosition, factor = event.deltaFactor || settings.mouseWheelSpeed;
|
900
|
-
jsp.scrollBy(deltaX * factor, -deltaY * factor, false);
|
901
|
-
// return true if there was no movement so rest of screen can scroll
|
902
|
-
return dX == horizontalDragPosition && dY == verticalDragPosition;
|
908
|
+
updateHorizontalArrows(isAtLeft, isAtRight);
|
909
|
+
pane.css('left', destLeft + 'px');
|
910
|
+
elem.trigger('jsp-scroll-x', [-destLeft, isAtLeft, isAtRight]).trigger('scroll');
|
903
911
|
}
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
}
|
911
|
-
|
912
|
-
function nil()
|
913
|
-
{
|
914
|
-
return false;
|
915
|
-
}
|
916
|
-
|
917
|
-
function initFocusHandler()
|
918
|
-
{
|
919
|
-
pane.find(':input,a').unbind('focus.jsp').bind(
|
920
|
-
'focus.jsp',
|
921
|
-
function(e)
|
922
|
-
{
|
923
|
-
scrollToElement(e.target, false);
|
912
|
+
|
913
|
+
function updateVerticalArrows(isAtTop, isAtBottom) {
|
914
|
+
if (settings.showArrows) {
|
915
|
+
arrowUp[isAtTop ? 'addClass' : 'removeClass']('jspDisabled');
|
916
|
+
arrowDown[isAtBottom ? 'addClass' : 'removeClass']('jspDisabled');
|
917
|
+
}
|
924
918
|
}
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
}
|
932
|
-
|
933
|
-
function initKeyboardNav()
|
934
|
-
{
|
935
|
-
var keyDown, elementHasScrolled, validParents = [];
|
936
|
-
isScrollableH && validParents.push(horizontalBar[0]);
|
937
|
-
isScrollableV && validParents.push(verticalBar[0]);
|
938
|
-
|
939
|
-
// IE also focuses elements that don't have tabindex set.
|
940
|
-
pane.focus(
|
941
|
-
function()
|
942
|
-
{
|
943
|
-
elem.focus();
|
919
|
+
|
920
|
+
function updateHorizontalArrows(isAtLeft, isAtRight) {
|
921
|
+
if (settings.showArrows) {
|
922
|
+
arrowLeft[isAtLeft ? 'addClass' : 'removeClass']('jspDisabled');
|
923
|
+
arrowRight[isAtRight ? 'addClass' : 'removeClass']('jspDisabled');
|
924
|
+
}
|
944
925
|
}
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
.bind(
|
950
|
-
'keydown.jsp',
|
951
|
-
function(e)
|
952
|
-
{
|
953
|
-
if (e.target !== this && !(validParents.length && $(e.target).closest(validParents).length)){
|
954
|
-
return;
|
955
|
-
}
|
956
|
-
var dX = horizontalDragPosition, dY = verticalDragPosition;
|
957
|
-
switch(e.keyCode) {
|
958
|
-
case 40: // down
|
959
|
-
case 38: // up
|
960
|
-
case 34: // page down
|
961
|
-
case 32: // space
|
962
|
-
case 33: // page up
|
963
|
-
case 39: // right
|
964
|
-
case 37: // left
|
965
|
-
keyDown = e.keyCode;
|
966
|
-
keyDownHandler();
|
967
|
-
break;
|
968
|
-
case 35: // end
|
969
|
-
scrollToY(contentHeight - paneHeight);
|
970
|
-
keyDown = null;
|
971
|
-
break;
|
972
|
-
case 36: // home
|
973
|
-
scrollToY(0);
|
974
|
-
keyDown = null;
|
975
|
-
break;
|
976
|
-
}
|
977
|
-
|
978
|
-
elementHasScrolled = e.keyCode == keyDown && dX != horizontalDragPosition || dY != verticalDragPosition;
|
979
|
-
return !elementHasScrolled;
|
926
|
+
|
927
|
+
function scrollToY(destY, animate) {
|
928
|
+
var percentScrolled = destY / (contentHeight - paneHeight);
|
929
|
+
positionDragY(percentScrolled * dragMaxY, animate);
|
980
930
|
}
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
if (e.keyCode == keyDown) {
|
986
|
-
keyDownHandler();
|
987
|
-
}
|
988
|
-
return !elementHasScrolled;
|
931
|
+
|
932
|
+
function scrollToX(destX, animate) {
|
933
|
+
var percentScrolled = destX / (contentWidth - paneWidth);
|
934
|
+
positionDragX(percentScrolled * dragMaxX, animate);
|
989
935
|
}
|
990
|
-
);
|
991
|
-
|
992
|
-
if (settings.hideFocus) {
|
993
|
-
elem.css('outline', 'none');
|
994
|
-
if ('hideFocus' in container[0]){
|
995
|
-
elem.attr('hideFocus', true);
|
996
|
-
}
|
997
|
-
} else {
|
998
|
-
elem.css('outline', '');
|
999
|
-
if ('hideFocus' in container[0]){
|
1000
|
-
elem.attr('hideFocus', false);
|
1001
|
-
}
|
1002
|
-
}
|
1003
936
|
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
function observeHash()
|
1042
|
-
{
|
1043
|
-
if (location.hash && location.hash.length > 1) {
|
1044
|
-
var e,
|
1045
|
-
retryInt,
|
1046
|
-
hash = escape(location.hash.substr(1)) // hash must be escaped to prevent XSS
|
1047
|
-
;
|
1048
|
-
try {
|
1049
|
-
e = $('#' + hash + ', a[name="' + hash + '"]');
|
1050
|
-
} catch (err) {
|
1051
|
-
return;
|
1052
|
-
}
|
1053
|
-
|
1054
|
-
if (e.length && pane.find(hash)) {
|
1055
|
-
// nasty workaround but it appears to take a little while before the hash has done its thing
|
1056
|
-
// to the rendered page so we just wait until the container's scrollTop has been messed up.
|
1057
|
-
if (container.scrollTop() === 0) {
|
1058
|
-
retryInt = setInterval(
|
1059
|
-
function()
|
1060
|
-
{
|
1061
|
-
if (container.scrollTop() > 0) {
|
1062
|
-
scrollToElement(e, true);
|
1063
|
-
$(document).scrollTop(container.position().top);
|
1064
|
-
clearInterval(retryInt);
|
937
|
+
function scrollToElement(ele, stickToTop, animate) {
|
938
|
+
var e,
|
939
|
+
eleHeight,
|
940
|
+
eleWidth,
|
941
|
+
eleTop = 0,
|
942
|
+
eleLeft = 0,
|
943
|
+
viewportTop,
|
944
|
+
viewportLeft,
|
945
|
+
maxVisibleEleTop,
|
946
|
+
maxVisibleEleLeft,
|
947
|
+
destY,
|
948
|
+
destX;
|
949
|
+
|
950
|
+
// Legal hash values aren't necessarily legal jQuery selectors so we need to catch any
|
951
|
+
// errors from the lookup...
|
952
|
+
try {
|
953
|
+
e = $(ele);
|
954
|
+
} catch (err) {
|
955
|
+
return;
|
956
|
+
}
|
957
|
+
eleHeight = e.outerHeight();
|
958
|
+
eleWidth = e.outerWidth();
|
959
|
+
|
960
|
+
container.scrollTop(0);
|
961
|
+
container.scrollLeft(0);
|
962
|
+
|
963
|
+
// loop through parents adding the offset top of any elements that are relatively positioned between
|
964
|
+
// the focused element and the jspPane so we can get the true distance from the top
|
965
|
+
// of the focused element to the top of the scrollpane...
|
966
|
+
while (!e.is('.jspPane')) {
|
967
|
+
eleTop += e.position().top;
|
968
|
+
eleLeft += e.position().left;
|
969
|
+
e = e.offsetParent();
|
970
|
+
if (/^body|html$/i.test(e[0].nodeName)) {
|
971
|
+
// we ended up too high in the document structure. Quit!
|
972
|
+
return;
|
1065
973
|
}
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
974
|
+
}
|
975
|
+
|
976
|
+
viewportTop = contentPositionY();
|
977
|
+
maxVisibleEleTop = viewportTop + paneHeight;
|
978
|
+
if (eleTop < viewportTop || stickToTop) {
|
979
|
+
// element is above viewport
|
980
|
+
destY = eleTop - settings.horizontalGutter;
|
981
|
+
} else if (eleTop + eleHeight > maxVisibleEleTop) {
|
982
|
+
// element is below viewport
|
983
|
+
destY = eleTop - paneHeight + eleHeight + settings.horizontalGutter;
|
984
|
+
}
|
985
|
+
if (!isNaN(destY)) {
|
986
|
+
scrollToY(destY, animate);
|
987
|
+
}
|
988
|
+
|
989
|
+
viewportLeft = contentPositionX();
|
990
|
+
maxVisibleEleLeft = viewportLeft + paneWidth;
|
991
|
+
if (eleLeft < viewportLeft || stickToTop) {
|
992
|
+
// element is to the left of viewport
|
993
|
+
destX = eleLeft - settings.horizontalGutter;
|
994
|
+
} else if (eleLeft + eleWidth > maxVisibleEleLeft) {
|
995
|
+
// element is to the right viewport
|
996
|
+
destX = eleLeft - paneWidth + eleWidth + settings.horizontalGutter;
|
997
|
+
}
|
998
|
+
if (!isNaN(destX)) {
|
999
|
+
scrollToX(destX, animate);
|
1000
|
+
}
|
1072
1001
|
}
|
1073
|
-
}
|
1074
|
-
}
|
1075
|
-
}
|
1076
1002
|
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
if ($(document.body).data('jspHijack')) {
|
1081
|
-
return;
|
1082
|
-
}
|
1003
|
+
function contentPositionX() {
|
1004
|
+
return -pane.position().left;
|
1005
|
+
}
|
1083
1006
|
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
// use live handler to also capture newly created links
|
1088
|
-
$(document.body).delegate('a[href*=#]', 'click', function(event) {
|
1089
|
-
// does the link point to the same page?
|
1090
|
-
// this also takes care of cases with a <base>-Tag or Links not starting with the hash #
|
1091
|
-
// e.g. <a href="index.html#test"> when the current url already is index.html
|
1092
|
-
var href = this.href.substr(0, this.href.indexOf('#')),
|
1093
|
-
locationHref = location.href,
|
1094
|
-
hash,
|
1095
|
-
element,
|
1096
|
-
container,
|
1097
|
-
jsp,
|
1098
|
-
scrollTop,
|
1099
|
-
elementTop;
|
1100
|
-
if (location.href.indexOf('#') !== -1) {
|
1101
|
-
locationHref = location.href.substr(0, location.href.indexOf('#'));
|
1102
|
-
}
|
1103
|
-
if (href !== locationHref) {
|
1104
|
-
// the link points to another page
|
1105
|
-
return;
|
1106
|
-
}
|
1107
|
-
|
1108
|
-
// check if jScrollPane should handle this click event
|
1109
|
-
hash = escape(this.href.substr(this.href.indexOf('#') + 1));
|
1110
|
-
|
1111
|
-
// find the element on the page
|
1112
|
-
element;
|
1113
|
-
try {
|
1114
|
-
element = $('#' + hash + ', a[name="' + hash + '"]');
|
1115
|
-
} catch (e) {
|
1116
|
-
// hash is not a valid jQuery identifier
|
1117
|
-
return;
|
1118
|
-
}
|
1119
|
-
|
1120
|
-
if (!element.length) {
|
1121
|
-
// this link does not point to an element on this page
|
1122
|
-
return;
|
1123
|
-
}
|
1124
|
-
|
1125
|
-
container = element.closest('.jspScrollable');
|
1126
|
-
jsp = container.data('jsp');
|
1127
|
-
|
1128
|
-
// jsp might be another jsp instance than the one, that bound this event
|
1129
|
-
// remember: this event is only bound once for all instances.
|
1130
|
-
jsp.scrollToElement(element, true);
|
1131
|
-
|
1132
|
-
if (container[0].scrollIntoView) {
|
1133
|
-
// also scroll to the top of the container (if it is not visible)
|
1134
|
-
scrollTop = $(window).scrollTop();
|
1135
|
-
elementTop = element.offset().top;
|
1136
|
-
if (elementTop < scrollTop || elementTop > scrollTop + $(window).height()) {
|
1137
|
-
container[0].scrollIntoView();
|
1007
|
+
function contentPositionY() {
|
1008
|
+
return -pane.position().top;
|
1138
1009
|
}
|
1139
|
-
}
|
1140
1010
|
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
var startX,
|
1150
|
-
startY,
|
1151
|
-
touchStartX,
|
1152
|
-
touchStartY,
|
1153
|
-
moved,
|
1154
|
-
moving = false;
|
1155
|
-
|
1156
|
-
container.unbind('touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick').bind(
|
1157
|
-
'touchstart.jsp',
|
1158
|
-
function(e)
|
1159
|
-
{
|
1160
|
-
var touch = e.originalEvent.touches[0];
|
1161
|
-
startX = contentPositionX();
|
1162
|
-
startY = contentPositionY();
|
1163
|
-
touchStartX = touch.pageX;
|
1164
|
-
touchStartY = touch.pageY;
|
1165
|
-
moved = false;
|
1166
|
-
moving = true;
|
1011
|
+
function isCloseToBottom() {
|
1012
|
+
var scrollableHeight = contentHeight - paneHeight;
|
1013
|
+
|
1014
|
+
if (settings.maintainPosition == true) {
|
1015
|
+
return scrollableHeight >= 20 && scrollableHeight - contentPositionY() < 10;
|
1016
|
+
}
|
1017
|
+
|
1018
|
+
return true;
|
1167
1019
|
}
|
1168
|
-
).bind(
|
1169
|
-
'touchmove.jsp',
|
1170
|
-
function(ev)
|
1171
|
-
{
|
1172
|
-
if(!moving) {
|
1173
|
-
return;
|
1174
|
-
}
|
1175
1020
|
|
1176
|
-
|
1177
|
-
|
1021
|
+
function isCloseToRight() {
|
1022
|
+
var scrollableWidth = contentWidth - paneWidth;
|
1178
1023
|
|
1179
|
-
|
1024
|
+
if (settings.maintainPosition == true) {
|
1025
|
+
return scrollableWidth >= 20 && scrollableWidth - contentPositionX() < 10;
|
1026
|
+
}
|
1180
1027
|
|
1181
|
-
|
1028
|
+
return true;
|
1029
|
+
}
|
1182
1030
|
|
1183
|
-
|
1184
|
-
|
1031
|
+
function initMousewheel() {
|
1032
|
+
container.off(mwEvent).on(mwEvent, function (event, delta, deltaX, deltaY) {
|
1033
|
+
if (!horizontalDragPosition) horizontalDragPosition = 0;
|
1034
|
+
if (!verticalDragPosition) verticalDragPosition = 0;
|
1035
|
+
|
1036
|
+
var dX = horizontalDragPosition,
|
1037
|
+
dY = verticalDragPosition,
|
1038
|
+
factor = event.deltaFactor || settings.mouseWheelSpeed;
|
1039
|
+
jsp.scrollBy(deltaX * factor, -deltaY * factor, false);
|
1040
|
+
// return true if there was no movement so rest of screen can scroll
|
1041
|
+
return dX == horizontalDragPosition && dY == verticalDragPosition;
|
1042
|
+
});
|
1185
1043
|
}
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
{
|
1190
|
-
moving = false;
|
1191
|
-
/*if(moved) {
|
1192
|
-
return false;
|
1193
|
-
}*/
|
1044
|
+
|
1045
|
+
function removeMousewheel() {
|
1046
|
+
container.off(mwEvent);
|
1194
1047
|
}
|
1195
|
-
|
1196
|
-
|
1197
|
-
function(e)
|
1198
|
-
{
|
1199
|
-
if(moved) {
|
1200
|
-
moved = false;
|
1048
|
+
|
1049
|
+
function nil() {
|
1201
1050
|
return false;
|
1202
|
-
}
|
1203
1051
|
}
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
elem.replaceWith(originalElement.append(pane.children()));
|
1212
|
-
originalElement.scrollTop(currentY);
|
1213
|
-
originalElement.scrollLeft(currentX);
|
1214
|
-
|
1215
|
-
// clear reinitialize timer if active
|
1216
|
-
if (reinitialiseInterval) {
|
1217
|
-
clearInterval(reinitialiseInterval);
|
1218
|
-
}
|
1219
|
-
}
|
1220
|
-
|
1221
|
-
// Public API
|
1222
|
-
$.extend(
|
1223
|
-
jsp,
|
1224
|
-
{
|
1225
|
-
// Reinitialises the scroll pane (if it's internal dimensions have changed since the last time it
|
1226
|
-
// was initialised). The settings object which is passed in will override any settings from the
|
1227
|
-
// previous time it was initialised - if you don't pass any settings then the ones from the previous
|
1228
|
-
// initialisation will be used.
|
1229
|
-
reinitialise: function(s)
|
1230
|
-
{
|
1231
|
-
s = $.extend({}, settings, s);
|
1232
|
-
initialise(s);
|
1233
|
-
},
|
1234
|
-
// Scrolls the specified element (a jQuery object, DOM node or jQuery selector string) into view so
|
1235
|
-
// that it can be seen within the viewport. If stickToTop is true then the element will appear at
|
1236
|
-
// the top of the viewport, if it is false then the viewport will scroll as little as possible to
|
1237
|
-
// show the element. You can also specify if you want animation to occur. If you don't provide this
|
1238
|
-
// argument then the animateScroll value from the settings object is used instead.
|
1239
|
-
scrollToElement: function(ele, stickToTop, animate)
|
1240
|
-
{
|
1241
|
-
scrollToElement(ele, stickToTop, animate);
|
1242
|
-
},
|
1243
|
-
// Scrolls the pane so that the specified co-ordinates within the content are at the top left
|
1244
|
-
// of the viewport. animate is optional and if not passed then the value of animateScroll from
|
1245
|
-
// the settings object this jScrollPane was initialised with is used.
|
1246
|
-
scrollTo: function(destX, destY, animate)
|
1247
|
-
{
|
1248
|
-
scrollToX(destX, animate);
|
1249
|
-
scrollToY(destY, animate);
|
1250
|
-
},
|
1251
|
-
// Scrolls the pane so that the specified co-ordinate within the content is at the left of the
|
1252
|
-
// viewport. animate is optional and if not passed then the value of animateScroll from the settings
|
1253
|
-
// object this jScrollPane was initialised with is used.
|
1254
|
-
scrollToX: function(destX, animate)
|
1255
|
-
{
|
1256
|
-
scrollToX(destX, animate);
|
1257
|
-
},
|
1258
|
-
// Scrolls the pane so that the specified co-ordinate within the content is at the top of the
|
1259
|
-
// viewport. animate is optional and if not passed then the value of animateScroll from the settings
|
1260
|
-
// object this jScrollPane was initialised with is used.
|
1261
|
-
scrollToY: function(destY, animate)
|
1262
|
-
{
|
1263
|
-
scrollToY(destY, animate);
|
1264
|
-
},
|
1265
|
-
// Scrolls the pane to the specified percentage of its maximum horizontal scroll position. animate
|
1266
|
-
// is optional and if not passed then the value of animateScroll from the settings object this
|
1267
|
-
// jScrollPane was initialised with is used.
|
1268
|
-
scrollToPercentX: function(destPercentX, animate)
|
1269
|
-
{
|
1270
|
-
scrollToX(destPercentX * (contentWidth - paneWidth), animate);
|
1271
|
-
},
|
1272
|
-
// Scrolls the pane to the specified percentage of its maximum vertical scroll position. animate
|
1273
|
-
// is optional and if not passed then the value of animateScroll from the settings object this
|
1274
|
-
// jScrollPane was initialised with is used.
|
1275
|
-
scrollToPercentY: function(destPercentY, animate)
|
1276
|
-
{
|
1277
|
-
scrollToY(destPercentY * (contentHeight - paneHeight), animate);
|
1278
|
-
},
|
1279
|
-
// Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
|
1280
|
-
// the value of animateScroll from the settings object this jScrollPane was initialised with is used.
|
1281
|
-
scrollBy: function(deltaX, deltaY, animate)
|
1282
|
-
{
|
1283
|
-
jsp.scrollByX(deltaX, animate);
|
1284
|
-
jsp.scrollByY(deltaY, animate);
|
1285
|
-
},
|
1286
|
-
// Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
|
1287
|
-
// the value of animateScroll from the settings object this jScrollPane was initialised with is used.
|
1288
|
-
scrollByX: function(deltaX, animate)
|
1289
|
-
{
|
1290
|
-
var destX = contentPositionX() + Math[deltaX<0 ? 'floor' : 'ceil'](deltaX),
|
1291
|
-
percentScrolled = destX / (contentWidth - paneWidth);
|
1292
|
-
positionDragX(percentScrolled * dragMaxX, animate);
|
1293
|
-
},
|
1294
|
-
// Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
|
1295
|
-
// the value of animateScroll from the settings object this jScrollPane was initialised with is used.
|
1296
|
-
scrollByY: function(deltaY, animate)
|
1297
|
-
{
|
1298
|
-
var destY = contentPositionY() + Math[deltaY<0 ? 'floor' : 'ceil'](deltaY),
|
1299
|
-
percentScrolled = destY / (contentHeight - paneHeight);
|
1300
|
-
positionDragY(percentScrolled * dragMaxY, animate);
|
1301
|
-
},
|
1302
|
-
// Positions the horizontal drag at the specified x position (and updates the viewport to reflect
|
1303
|
-
// this). animate is optional and if not passed then the value of animateScroll from the settings
|
1304
|
-
// object this jScrollPane was initialised with is used.
|
1305
|
-
positionDragX: function(x, animate)
|
1306
|
-
{
|
1307
|
-
positionDragX(x, animate);
|
1308
|
-
},
|
1309
|
-
// Positions the vertical drag at the specified y position (and updates the viewport to reflect
|
1310
|
-
// this). animate is optional and if not passed then the value of animateScroll from the settings
|
1311
|
-
// object this jScrollPane was initialised with is used.
|
1312
|
-
positionDragY: function(y, animate)
|
1313
|
-
{
|
1314
|
-
positionDragY(y, animate);
|
1315
|
-
},
|
1316
|
-
// This method is called when jScrollPane is trying to animate to a new position. You can override
|
1317
|
-
// it if you want to provide advanced animation functionality. It is passed the following arguments:
|
1318
|
-
// * ele - the element whose position is being animated
|
1319
|
-
// * prop - the property that is being animated
|
1320
|
-
// * value - the value it's being animated to
|
1321
|
-
// * stepCallback - a function that you must execute each time you update the value of the property
|
1322
|
-
// You can use the default implementation (below) as a starting point for your own implementation.
|
1323
|
-
animate: function(ele, prop, value, stepCallback)
|
1324
|
-
{
|
1325
|
-
var params = {};
|
1326
|
-
params[prop] = value;
|
1327
|
-
ele.animate(
|
1328
|
-
params,
|
1329
|
-
{
|
1330
|
-
'duration' : settings.animateDuration,
|
1331
|
-
'easing' : settings.animateEase,
|
1332
|
-
'queue' : false,
|
1333
|
-
'step' : stepCallback
|
1334
|
-
}
|
1335
|
-
);
|
1336
|
-
},
|
1337
|
-
// Returns the current x position of the viewport with regards to the content pane.
|
1338
|
-
getContentPositionX: function()
|
1339
|
-
{
|
1340
|
-
return contentPositionX();
|
1341
|
-
},
|
1342
|
-
// Returns the current y position of the viewport with regards to the content pane.
|
1343
|
-
getContentPositionY: function()
|
1344
|
-
{
|
1345
|
-
return contentPositionY();
|
1346
|
-
},
|
1347
|
-
// Returns the width of the content within the scroll pane.
|
1348
|
-
getContentWidth: function()
|
1349
|
-
{
|
1350
|
-
return contentWidth;
|
1351
|
-
},
|
1352
|
-
// Returns the height of the content within the scroll pane.
|
1353
|
-
getContentHeight: function()
|
1354
|
-
{
|
1355
|
-
return contentHeight;
|
1356
|
-
},
|
1357
|
-
// Returns the horizontal position of the viewport within the pane content.
|
1358
|
-
getPercentScrolledX: function()
|
1359
|
-
{
|
1360
|
-
return contentPositionX() / (contentWidth - paneWidth);
|
1361
|
-
},
|
1362
|
-
// Returns the vertical position of the viewport within the pane content.
|
1363
|
-
getPercentScrolledY: function()
|
1364
|
-
{
|
1365
|
-
return contentPositionY() / (contentHeight - paneHeight);
|
1366
|
-
},
|
1367
|
-
// Returns whether or not this scrollpane has a horizontal scrollbar.
|
1368
|
-
getIsScrollableH: function()
|
1369
|
-
{
|
1370
|
-
return isScrollableH;
|
1371
|
-
},
|
1372
|
-
// Returns whether or not this scrollpane has a vertical scrollbar.
|
1373
|
-
getIsScrollableV: function()
|
1374
|
-
{
|
1375
|
-
return isScrollableV;
|
1376
|
-
},
|
1377
|
-
// Gets a reference to the content pane. It is important that you use this method if you want to
|
1378
|
-
// edit the content of your jScrollPane as if you access the element directly then you may have some
|
1379
|
-
// problems (as your original element has had additional elements for the scrollbars etc added into
|
1380
|
-
// it).
|
1381
|
-
getContentPane: function()
|
1382
|
-
{
|
1383
|
-
return pane;
|
1384
|
-
},
|
1385
|
-
// Scrolls this jScrollPane down as far as it can currently scroll. If animate isn't passed then the
|
1386
|
-
// animateScroll value from settings is used instead.
|
1387
|
-
scrollToBottom: function(animate)
|
1388
|
-
{
|
1389
|
-
positionDragY(dragMaxY, animate);
|
1390
|
-
},
|
1391
|
-
// Hijacks the links on the page which link to content inside the scrollpane. If you have changed
|
1392
|
-
// the content of your page (e.g. via AJAX) and want to make sure any new anchor links to the
|
1393
|
-
// contents of your scroll pane will work then call this function.
|
1394
|
-
hijackInternalLinks: $.noop,
|
1395
|
-
// Removes the jScrollPane and returns the page to the state it was in before jScrollPane was
|
1396
|
-
// initialised.
|
1397
|
-
destroy: function()
|
1398
|
-
{
|
1399
|
-
destroy();
|
1052
|
+
|
1053
|
+
function initFocusHandler() {
|
1054
|
+
pane.find(':input,a')
|
1055
|
+
.off('focus.jsp')
|
1056
|
+
.on('focus.jsp', function (e) {
|
1057
|
+
scrollToElement(e.target, false);
|
1058
|
+
});
|
1400
1059
|
}
|
1401
|
-
}
|
1402
|
-
);
|
1403
1060
|
|
1404
|
-
|
1405
|
-
|
1061
|
+
function removeFocusHandler() {
|
1062
|
+
pane.find(':input,a').off('focus.jsp');
|
1063
|
+
}
|
1406
1064
|
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1065
|
+
function initKeyboardNav() {
|
1066
|
+
var keyDown,
|
1067
|
+
elementHasScrolled,
|
1068
|
+
validParents = [];
|
1069
|
+
if (isScrollableH) {
|
1070
|
+
validParents.push(horizontalBar[0]);
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
if (isScrollableV) {
|
1074
|
+
validParents.push(verticalBar[0]);
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
// IE also focuses elements that don't have tabindex set.
|
1078
|
+
pane.on('focus.jsp', function () {
|
1079
|
+
elem.focus();
|
1080
|
+
});
|
1081
|
+
|
1082
|
+
elem.attr('tabindex', 0)
|
1083
|
+
.off('keydown.jsp keypress.jsp')
|
1084
|
+
.on('keydown.jsp', function (e) {
|
1085
|
+
if (e.target !== this && !(validParents.length && $(e.target).closest(validParents).length)) {
|
1086
|
+
return;
|
1087
|
+
}
|
1088
|
+
var dX = horizontalDragPosition,
|
1089
|
+
dY = verticalDragPosition;
|
1090
|
+
switch (e.keyCode) {
|
1091
|
+
case 40: // down
|
1092
|
+
case 38: // up
|
1093
|
+
case 34: // page down
|
1094
|
+
case 32: // space
|
1095
|
+
case 33: // page up
|
1096
|
+
case 39: // right
|
1097
|
+
case 37: // left
|
1098
|
+
keyDown = e.keyCode;
|
1099
|
+
keyDownHandler();
|
1100
|
+
break;
|
1101
|
+
case 35: // end
|
1102
|
+
scrollToY(contentHeight - paneHeight);
|
1103
|
+
keyDown = null;
|
1104
|
+
break;
|
1105
|
+
case 36: // home
|
1106
|
+
scrollToY(0);
|
1107
|
+
keyDown = null;
|
1108
|
+
break;
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
elementHasScrolled = (e.keyCode == keyDown && dX != horizontalDragPosition) || dY != verticalDragPosition;
|
1112
|
+
return !elementHasScrolled;
|
1113
|
+
})
|
1114
|
+
.on(
|
1115
|
+
'keypress.jsp', // For FF/ OSX so that we can cancel the repeat key presses if the JSP scrolls...
|
1116
|
+
function (e) {
|
1117
|
+
if (e.keyCode == keyDown) {
|
1118
|
+
keyDownHandler();
|
1119
|
+
}
|
1120
|
+
// If the keypress is not related to the area, ignore it. Fixes problem with inputs inside scrolled area. Copied from line 955.
|
1121
|
+
if (e.target !== this && !(validParents.length && $(e.target).closest(validParents).length)) {
|
1122
|
+
return;
|
1123
|
+
}
|
1124
|
+
return !elementHasScrolled;
|
1125
|
+
},
|
1126
|
+
);
|
1127
|
+
|
1128
|
+
if (settings.hideFocus) {
|
1129
|
+
elem.css('outline', 'none');
|
1130
|
+
if ('hideFocus' in container[0]) {
|
1131
|
+
elem.attr('hideFocus', true);
|
1132
|
+
}
|
1133
|
+
} else {
|
1134
|
+
elem.css('outline', '');
|
1135
|
+
if ('hideFocus' in container[0]) {
|
1136
|
+
elem.attr('hideFocus', false);
|
1137
|
+
}
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
function keyDownHandler() {
|
1141
|
+
var dX = horizontalDragPosition,
|
1142
|
+
dY = verticalDragPosition;
|
1143
|
+
switch (keyDown) {
|
1144
|
+
case 40: // down
|
1145
|
+
jsp.scrollByY(settings.keyboardSpeed, false);
|
1146
|
+
break;
|
1147
|
+
case 38: // up
|
1148
|
+
jsp.scrollByY(-settings.keyboardSpeed, false);
|
1149
|
+
break;
|
1150
|
+
case 34: // page down
|
1151
|
+
case 32: // space
|
1152
|
+
jsp.scrollByY(paneHeight * settings.scrollPagePercent, false);
|
1153
|
+
break;
|
1154
|
+
case 33: // page up
|
1155
|
+
jsp.scrollByY(-paneHeight * settings.scrollPagePercent, false);
|
1156
|
+
break;
|
1157
|
+
case 39: // right
|
1158
|
+
jsp.scrollByX(settings.keyboardSpeed, false);
|
1159
|
+
break;
|
1160
|
+
case 37: // left
|
1161
|
+
jsp.scrollByX(-settings.keyboardSpeed, false);
|
1162
|
+
break;
|
1163
|
+
}
|
1164
|
+
|
1165
|
+
elementHasScrolled = dX != horizontalDragPosition || dY != verticalDragPosition;
|
1166
|
+
return elementHasScrolled;
|
1167
|
+
}
|
1168
|
+
}
|
1169
|
+
|
1170
|
+
function removeKeyboardNav() {
|
1171
|
+
elem.attr('tabindex', '-1').removeAttr('tabindex').off('keydown.jsp keypress.jsp');
|
1172
|
+
|
1173
|
+
pane.off('.jsp');
|
1174
|
+
}
|
1175
|
+
|
1176
|
+
function observeHash() {
|
1177
|
+
if (location.hash && location.hash.length > 1) {
|
1178
|
+
var e,
|
1179
|
+
retryInt,
|
1180
|
+
hash = escape(location.hash.substr(1)); // hash must be escaped to prevent XSS
|
1181
|
+
try {
|
1182
|
+
e = $('#' + hash + ', a[name="' + hash + '"]');
|
1183
|
+
} catch (err) {
|
1184
|
+
return;
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
if (e.length && pane.find(hash)) {
|
1188
|
+
// nasty workaround but it appears to take a little while before the hash has done its thing
|
1189
|
+
// to the rendered page so we just wait until the container's scrollTop has been messed up.
|
1190
|
+
if (container.scrollTop() === 0) {
|
1191
|
+
retryInt = setInterval(function () {
|
1192
|
+
if (container.scrollTop() > 0) {
|
1193
|
+
scrollToElement(e, true);
|
1194
|
+
$(document).scrollTop(container.position().top);
|
1195
|
+
clearInterval(retryInt);
|
1196
|
+
}
|
1197
|
+
}, 50);
|
1198
|
+
} else {
|
1199
|
+
scrollToElement(e, true);
|
1200
|
+
$(document).scrollTop(container.position().top);
|
1201
|
+
}
|
1202
|
+
}
|
1203
|
+
}
|
1204
|
+
}
|
1205
|
+
|
1206
|
+
function hijackInternalLinks() {
|
1207
|
+
// only register the link handler once
|
1208
|
+
if ($(document.body).data('jspHijack')) {
|
1209
|
+
return;
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
// remember that the handler was bound
|
1213
|
+
$(document.body).data('jspHijack', true);
|
1214
|
+
|
1215
|
+
// use live handler to also capture newly created links
|
1216
|
+
$(document.body).delegate('a[href*="#"]', 'click', function (event) {
|
1217
|
+
// does the link point to the same page?
|
1218
|
+
// this also takes care of cases with a <base>-Tag or Links not starting with the hash #
|
1219
|
+
// e.g. <a href="index.html#test"> when the current url already is index.html
|
1220
|
+
var href = this.href.substr(0, this.href.indexOf('#')),
|
1221
|
+
locationHref = location.href,
|
1222
|
+
hash,
|
1223
|
+
element,
|
1224
|
+
container,
|
1225
|
+
jsp,
|
1226
|
+
scrollTop,
|
1227
|
+
elementTop;
|
1228
|
+
if (location.href.indexOf('#') !== -1) {
|
1229
|
+
locationHref = location.href.substr(0, location.href.indexOf('#'));
|
1230
|
+
}
|
1231
|
+
if (href !== locationHref) {
|
1232
|
+
// the link points to another page
|
1233
|
+
return;
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
// check if jScrollPane should handle this click event
|
1237
|
+
hash = escape(this.href.substr(this.href.indexOf('#') + 1));
|
1238
|
+
|
1239
|
+
// find the element on the page
|
1240
|
+
try {
|
1241
|
+
element = $('#' + hash + ', a[name="' + hash + '"]');
|
1242
|
+
} catch (e) {
|
1243
|
+
// hash is not a valid jQuery identifier
|
1244
|
+
return;
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
if (!element.length) {
|
1248
|
+
// this link does not point to an element on this page
|
1249
|
+
return;
|
1250
|
+
}
|
1251
|
+
|
1252
|
+
container = element.closest('.jspScrollable');
|
1253
|
+
jsp = container.data('jsp');
|
1254
|
+
|
1255
|
+
// jsp might be another jsp instance than the one, that bound this event
|
1256
|
+
// remember: this event is only bound once for all instances.
|
1257
|
+
jsp.scrollToElement(element, true);
|
1258
|
+
|
1259
|
+
if (container[0].scrollIntoView) {
|
1260
|
+
// also scroll to the top of the container (if it is not visible)
|
1261
|
+
scrollTop = $(window).scrollTop();
|
1262
|
+
elementTop = element.offset().top;
|
1263
|
+
if (elementTop < scrollTop || elementTop > scrollTop + $(window).height()) {
|
1264
|
+
container[0].scrollIntoView();
|
1265
|
+
}
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
// jsp handled this event, prevent the browser default (scrolling :P)
|
1269
|
+
event.preventDefault();
|
1270
|
+
});
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
// Init touch on iPad, iPhone, iPod, Android
|
1274
|
+
function initTouch() {
|
1275
|
+
var startX,
|
1276
|
+
startY,
|
1277
|
+
touchStartX,
|
1278
|
+
touchStartY,
|
1279
|
+
moved,
|
1280
|
+
moving = false;
|
1281
|
+
|
1282
|
+
container
|
1283
|
+
.off('touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick')
|
1284
|
+
.on('touchstart.jsp', function (e) {
|
1285
|
+
var touch = e.originalEvent.touches[0];
|
1286
|
+
startX = contentPositionX();
|
1287
|
+
startY = contentPositionY();
|
1288
|
+
touchStartX = touch.pageX;
|
1289
|
+
touchStartY = touch.pageY;
|
1290
|
+
moved = false;
|
1291
|
+
moving = true;
|
1292
|
+
})
|
1293
|
+
.on('touchmove.jsp', function (ev) {
|
1294
|
+
if (!moving) {
|
1295
|
+
return;
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
var touchPos = ev.originalEvent.touches[0],
|
1299
|
+
dX = horizontalDragPosition,
|
1300
|
+
dY = verticalDragPosition;
|
1301
|
+
|
1302
|
+
jsp.scrollTo(startX + touchStartX - touchPos.pageX, startY + touchStartY - touchPos.pageY);
|
1303
|
+
|
1304
|
+
moved = moved || Math.abs(touchStartX - touchPos.pageX) > 5 || Math.abs(touchStartY - touchPos.pageY) > 5;
|
1305
|
+
|
1306
|
+
// return true if there was no movement so rest of screen can scroll
|
1307
|
+
return dX == horizontalDragPosition && dY == verticalDragPosition;
|
1308
|
+
})
|
1309
|
+
.on('touchend.jsp', function (e) {
|
1310
|
+
moving = false;
|
1311
|
+
/*if(moved) {
|
1312
|
+
return false;
|
1313
|
+
}*/
|
1314
|
+
})
|
1315
|
+
.on('click.jsp-touchclick', function (e) {
|
1316
|
+
if (moved) {
|
1317
|
+
moved = false;
|
1318
|
+
return false;
|
1319
|
+
}
|
1320
|
+
});
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
function destroy() {
|
1324
|
+
var currentY = contentPositionY(),
|
1325
|
+
currentX = contentPositionX();
|
1326
|
+
elem.removeClass('jspScrollable').off('.jsp');
|
1327
|
+
pane.off('.jsp');
|
1328
|
+
elem.replaceWith(originalElement.append(pane.children()));
|
1329
|
+
originalElement.scrollTop(currentY);
|
1330
|
+
originalElement.scrollLeft(currentX);
|
1331
|
+
|
1332
|
+
// clear reinitialize timer if active
|
1333
|
+
if (reinitialiseInterval) {
|
1334
|
+
clearInterval(reinitialiseInterval);
|
1335
|
+
}
|
1336
|
+
}
|
1337
|
+
|
1338
|
+
// Public API
|
1339
|
+
$.extend(jsp, {
|
1340
|
+
// Reinitialises the scroll pane (if it's internal dimensions have changed since the last time it
|
1341
|
+
// was initialised). The settings object which is passed in will override any settings from the
|
1342
|
+
// previous time it was initialised - if you don't pass any settings then the ones from the previous
|
1343
|
+
// initialisation will be used.
|
1344
|
+
reinitialise: function (s) {
|
1345
|
+
s = $.extend({}, settings, s);
|
1346
|
+
initialise(s);
|
1347
|
+
},
|
1348
|
+
// Scrolls the specified element (a jQuery object, DOM node or jQuery selector string) into view so
|
1349
|
+
// that it can be seen within the viewport. If stickToTop is true then the element will appear at
|
1350
|
+
// the top of the viewport, if it is false then the viewport will scroll as little as possible to
|
1351
|
+
// show the element. You can also specify if you want animation to occur. If you don't provide this
|
1352
|
+
// argument then the animateScroll value from the settings object is used instead.
|
1353
|
+
scrollToElement: function (ele, stickToTop, animate) {
|
1354
|
+
scrollToElement(ele, stickToTop, animate);
|
1355
|
+
},
|
1356
|
+
// Scrolls the pane so that the specified co-ordinates within the content are at the top left
|
1357
|
+
// of the viewport. animate is optional and if not passed then the value of animateScroll from
|
1358
|
+
// the settings object this jScrollPane was initialised with is used.
|
1359
|
+
scrollTo: function (destX, destY, animate) {
|
1360
|
+
scrollToX(destX, animate);
|
1361
|
+
scrollToY(destY, animate);
|
1362
|
+
},
|
1363
|
+
// Scrolls the pane so that the specified co-ordinate within the content is at the left of the
|
1364
|
+
// viewport. animate is optional and if not passed then the value of animateScroll from the settings
|
1365
|
+
// object this jScrollPane was initialised with is used.
|
1366
|
+
scrollToX: function (destX, animate) {
|
1367
|
+
scrollToX(destX, animate);
|
1368
|
+
},
|
1369
|
+
// Scrolls the pane so that the specified co-ordinate within the content is at the top of the
|
1370
|
+
// viewport. animate is optional and if not passed then the value of animateScroll from the settings
|
1371
|
+
// object this jScrollPane was initialised with is used.
|
1372
|
+
scrollToY: function (destY, animate) {
|
1373
|
+
scrollToY(destY, animate);
|
1374
|
+
},
|
1375
|
+
// Scrolls the pane to the specified percentage of its maximum horizontal scroll position. animate
|
1376
|
+
// is optional and if not passed then the value of animateScroll from the settings object this
|
1377
|
+
// jScrollPane was initialised with is used.
|
1378
|
+
scrollToPercentX: function (destPercentX, animate) {
|
1379
|
+
scrollToX(destPercentX * (contentWidth - paneWidth), animate);
|
1380
|
+
},
|
1381
|
+
// Scrolls the pane to the specified percentage of its maximum vertical scroll position. animate
|
1382
|
+
// is optional and if not passed then the value of animateScroll from the settings object this
|
1383
|
+
// jScrollPane was initialised with is used.
|
1384
|
+
scrollToPercentY: function (destPercentY, animate) {
|
1385
|
+
scrollToY(destPercentY * (contentHeight - paneHeight), animate);
|
1386
|
+
},
|
1387
|
+
// Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
|
1388
|
+
// the value of animateScroll from the settings object this jScrollPane was initialised with is used.
|
1389
|
+
scrollBy: function (deltaX, deltaY, animate) {
|
1390
|
+
jsp.scrollByX(deltaX, animate);
|
1391
|
+
jsp.scrollByY(deltaY, animate);
|
1392
|
+
},
|
1393
|
+
// Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
|
1394
|
+
// the value of animateScroll from the settings object this jScrollPane was initialised with is used.
|
1395
|
+
scrollByX: function (deltaX, animate) {
|
1396
|
+
var destX = contentPositionX() + Math[deltaX < 0 ? 'floor' : 'ceil'](deltaX),
|
1397
|
+
percentScrolled = destX / (contentWidth - paneWidth);
|
1398
|
+
positionDragX(percentScrolled * dragMaxX, animate);
|
1399
|
+
},
|
1400
|
+
// Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
|
1401
|
+
// the value of animateScroll from the settings object this jScrollPane was initialised with is used.
|
1402
|
+
scrollByY: function (deltaY, animate) {
|
1403
|
+
var destY = contentPositionY() + Math[deltaY < 0 ? 'floor' : 'ceil'](deltaY),
|
1404
|
+
percentScrolled = destY / (contentHeight - paneHeight);
|
1405
|
+
positionDragY(percentScrolled * dragMaxY, animate);
|
1406
|
+
},
|
1407
|
+
// Positions the horizontal drag at the specified x position (and updates the viewport to reflect
|
1408
|
+
// this). animate is optional and if not passed then the value of animateScroll from the settings
|
1409
|
+
// object this jScrollPane was initialised with is used.
|
1410
|
+
positionDragX: function (x, animate) {
|
1411
|
+
positionDragX(x, animate);
|
1412
|
+
},
|
1413
|
+
// Positions the vertical drag at the specified y position (and updates the viewport to reflect
|
1414
|
+
// this). animate is optional and if not passed then the value of animateScroll from the settings
|
1415
|
+
// object this jScrollPane was initialised with is used.
|
1416
|
+
positionDragY: function (y, animate) {
|
1417
|
+
positionDragY(y, animate);
|
1418
|
+
},
|
1419
|
+
// This method is called when jScrollPane is trying to animate to a new position. You can override
|
1420
|
+
// it if you want to provide advanced animation functionality. It is passed the following arguments:
|
1421
|
+
// * ele - the element whose position is being animated
|
1422
|
+
// * prop - the property that is being animated
|
1423
|
+
// * value - the value it's being animated to
|
1424
|
+
// * stepCallback - a function that you must execute each time you update the value of the property
|
1425
|
+
// * completeCallback - a function that will be executed after the animation had finished
|
1426
|
+
// You can use the default implementation (below) as a starting point for your own implementation.
|
1427
|
+
animate: function (ele, prop, value, stepCallback, completeCallback) {
|
1428
|
+
var params = {};
|
1429
|
+
params[prop] = value;
|
1430
|
+
ele.animate(params, {
|
1431
|
+
duration: settings.animateDuration,
|
1432
|
+
easing: settings.animateEase,
|
1433
|
+
queue: false,
|
1434
|
+
step: stepCallback,
|
1435
|
+
complete: completeCallback,
|
1436
|
+
});
|
1437
|
+
},
|
1438
|
+
// Returns the current x position of the viewport with regards to the content pane.
|
1439
|
+
getContentPositionX: function () {
|
1440
|
+
return contentPositionX();
|
1441
|
+
},
|
1442
|
+
// Returns the current y position of the viewport with regards to the content pane.
|
1443
|
+
getContentPositionY: function () {
|
1444
|
+
return contentPositionY();
|
1445
|
+
},
|
1446
|
+
// Returns the width of the content within the scroll pane.
|
1447
|
+
getContentWidth: function () {
|
1448
|
+
return contentWidth;
|
1449
|
+
},
|
1450
|
+
// Returns the height of the content within the scroll pane.
|
1451
|
+
getContentHeight: function () {
|
1452
|
+
return contentHeight;
|
1453
|
+
},
|
1454
|
+
// Returns the horizontal position of the viewport within the pane content.
|
1455
|
+
getPercentScrolledX: function () {
|
1456
|
+
return contentPositionX() / (contentWidth - paneWidth);
|
1457
|
+
},
|
1458
|
+
// Returns the vertical position of the viewport within the pane content.
|
1459
|
+
getPercentScrolledY: function () {
|
1460
|
+
return contentPositionY() / (contentHeight - paneHeight);
|
1461
|
+
},
|
1462
|
+
// Returns whether or not this scrollpane has a horizontal scrollbar.
|
1463
|
+
getIsScrollableH: function () {
|
1464
|
+
return isScrollableH;
|
1465
|
+
},
|
1466
|
+
// Returns whether or not this scrollpane has a vertical scrollbar.
|
1467
|
+
getIsScrollableV: function () {
|
1468
|
+
return isScrollableV;
|
1469
|
+
},
|
1470
|
+
// Gets a reference to the content pane. It is important that you use this method if you want to
|
1471
|
+
// edit the content of your jScrollPane as if you access the element directly then you may have some
|
1472
|
+
// problems (as your original element has had additional elements for the scrollbars etc added into
|
1473
|
+
// it).
|
1474
|
+
getContentPane: function () {
|
1475
|
+
return pane;
|
1476
|
+
},
|
1477
|
+
// Scrolls this jScrollPane down as far as it can currently scroll. If animate isn't passed then the
|
1478
|
+
// animateScroll value from settings is used instead.
|
1479
|
+
scrollToBottom: function (animate) {
|
1480
|
+
positionDragY(dragMaxY, animate);
|
1481
|
+
},
|
1482
|
+
// Hijacks the links on the page which link to content inside the scrollpane. If you have changed
|
1483
|
+
// the content of your page (e.g. via AJAX) and want to make sure any new anchor links to the
|
1484
|
+
// contents of your scroll pane will work then call this function.
|
1485
|
+
hijackInternalLinks: $.noop,
|
1486
|
+
// Removes the jScrollPane and returns the page to the state it was in before jScrollPane was
|
1487
|
+
// initialised.
|
1488
|
+
destroy: function () {
|
1489
|
+
destroy();
|
1490
|
+
},
|
1491
|
+
});
|
1492
|
+
|
1493
|
+
initialise(s);
|
1426
1494
|
}
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1495
|
+
|
1496
|
+
// Pluginifying code...
|
1497
|
+
settings = $.extend({}, $.fn.jScrollPane.defaults, settings);
|
1498
|
+
|
1499
|
+
// Apply default speed
|
1500
|
+
$.each(['arrowButtonSpeed', 'trackClickSpeed', 'keyboardSpeed'], function () {
|
1501
|
+
settings[this] = settings[this] || settings.speed;
|
1502
|
+
});
|
1503
|
+
|
1504
|
+
return this.each(function () {
|
1505
|
+
var elem = $(this),
|
1506
|
+
jspApi = elem.data('jsp');
|
1507
|
+
if (jspApi) {
|
1508
|
+
jspApi.reinitialise(settings);
|
1509
|
+
} else {
|
1510
|
+
$('script', elem).filter('[type="text/javascript"],:not([type])').remove();
|
1511
|
+
jspApi = new JScrollPane(elem, settings);
|
1512
|
+
elem.data('jsp', jspApi);
|
1513
|
+
}
|
1514
|
+
});
|
1515
|
+
};
|
1516
|
+
|
1517
|
+
$.fn.jScrollPane.defaults = {
|
1518
|
+
showArrows: false,
|
1519
|
+
maintainPosition: true,
|
1520
|
+
stickToBottom: false,
|
1521
|
+
stickToRight: false,
|
1522
|
+
clickOnTrack: true,
|
1523
|
+
autoReinitialise: false,
|
1524
|
+
autoReinitialiseDelay: 500,
|
1525
|
+
verticalDragMinHeight: 0,
|
1526
|
+
verticalDragMaxHeight: 99999,
|
1527
|
+
horizontalDragMinWidth: 0,
|
1528
|
+
horizontalDragMaxWidth: 99999,
|
1529
|
+
contentWidth: undefined,
|
1530
|
+
animateScroll: false,
|
1531
|
+
animateDuration: 300,
|
1532
|
+
animateEase: 'linear',
|
1533
|
+
hijackInternalLinks: false,
|
1534
|
+
verticalGutter: 4,
|
1535
|
+
horizontalGutter: 4,
|
1536
|
+
mouseWheelSpeed: 3,
|
1537
|
+
arrowButtonSpeed: 0,
|
1538
|
+
arrowRepeatFreq: 50,
|
1539
|
+
arrowScrollOnHover: false,
|
1540
|
+
trackClickSpeed: 0,
|
1541
|
+
trackClickRepeatFreq: 70,
|
1542
|
+
verticalArrowPositions: 'split',
|
1543
|
+
horizontalArrowPositions: 'split',
|
1544
|
+
enableKeyboardNavigation: true,
|
1545
|
+
hideFocus: false,
|
1546
|
+
keyboardSpeed: 0,
|
1547
|
+
initialDelay: 300, // Delay before starting repeating
|
1548
|
+
speed: 30, // Default speed when others falsey
|
1549
|
+
scrollPagePercent: 0.8, // Percent of visible area scrolled when pageUp/Down or track area pressed
|
1550
|
+
alwaysShowVScroll: false,
|
1551
|
+
alwaysShowHScroll: false,
|
1552
|
+
resizeSensor: false,
|
1553
|
+
resizeSensorDelay: 0,
|
1554
|
+
};
|
1555
|
+
});
|