• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/

Lines Matching refs:scroll

78 				return (/(relative|absolute|fixed)/).test($.curCSS(this,'position',1)) && (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));
82 return (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));
303 var scroll = ( a && a === "left" ) ? "scrollLeft" : "scrollTop",
306 if ( el[ scroll ] > 0 ) {
311 // if the element doesn't have the scroll set, see if it's possible to
312 // set the scroll
313 el[ scroll ] = 1;
314 has = ( el[ scroll ] > 0 );
315 el[ scroll ] = 0;
773 scroll: true,
1058 // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that
1059 // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag
1141 var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
1148 - ($.browser.safari && $.browser.version < 526 && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod)
1154 - ($.browser.safari && $.browser.version < 526 && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod)
1162 var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
1208 + ($.browser.safari && $.browser.version < 526 && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ))
1215 + ($.browser.safari && $.browser.version < 526 && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ))
1419 $.ui.plugin.add("draggable", "scroll", {
1798 draggable.element.parents( ":not(body,html)" ).bind( "scroll.droppable", function() {
1850 draggable.element.parents( ":not(body,html)" ).unbind( "scroll.droppable" );
1851 //Call prepareOffsets one final time since IE does not fire return scroll events when overflow was caused by drag (see #5003)
2928 scroll: true,
3144 if(this.options.scroll) {
3712 // 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that
3713 // the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag
3788 var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
3795 - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod)
3801 - ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod)
3809 var o = this.options, scroll = this.cssPosition == 'absolute' && !(this.scrollParent[0] != document && $.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);
3813 // 2. and the scroll parent is the document or similar to the offset parent
3814 // we have to refresh the relative offset during the scroll so there are no jumps
3852 + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ))
3859 + ($.browser.safari && this.cssPosition == 'fixed' ? 0 : ( this.cssPosition == 'fixed' ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ))
6373 scroll = this.element.scrollTop(),
6376 this.element.scrollTop( scroll + offset);
6378 this.element.scrollTop( scroll + offset - elementHeight + item.height());
6431 // TODO merge with no-scroll-else
6458 // TODO merge with no-scroll-else
9015 //Save and then restore scroll since Opera 9.5+ resets when parent z-Index is changed.