• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/prebuilt/WW/www/cgi-bin/

Lines Matching defs:jScrollPane

5  * See http://kelvinluck.com/assets/jquery/jScrollPane/

6 * $Id: jScrollPane.js 93 2010-06-01 08:17:28Z kelvin.luck $
16 * @example jQuery(".scroll-pane").jScrollPane();
18 * @name jScrollPane
32 * tabIndex - The tabindex for this jScrollPane to control when it is tabbed to when navigating via keyboard (default 0)
33 * enableKeyboardNavigation - Whether to allow keyboard scrolling of this jScrollPane when it is focused (default true)
36 * reinitialiseOnImageLoad - Whether the jScrollPane should automatically re-initialise itself when any contained images are loaded (default false)
37 * topCapHeight - The height of the "cap" area between the top of the jScrollPane and the top of the track/ buttons
38 * bottomCapHeight - The height of the "cap" area between the bottom of the jScrollPane and the bottom of the track/ buttons
39 * observeHash - Whether jScrollPane should attempt to automagically scroll to the correct place when an anchor inside the scrollpane is linked to (default true)
41 * @cat Plugins/jScrollPane
47 $.jScrollPane = {
50 $.fn.jScrollPane = function(settings)
52 settings = $.extend({}, $.fn.jScrollPane.defaults, settings);
107 $this.jScrollPane(settings);
131 $this.jScrollPane(s2); // re-initialise
595 $container.bind('mousedown.jScrollPane', onSelectScrollMouseDown);
598 $.jScrollPane.active.push($this[0]);
610 $this.parent().unbind('mousewheel').unbind('mousedown.jScrollPane').unbind('keydown.jscrollpane').unbind('keyup.jscrollpane');
640 $.fn.jScrollPane.defaults = {
665 var els = $.jScrollPane.active;