diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dijit/_base/scroll.js | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dijit/_base/scroll.js')
-rw-r--r-- | includes/js/dijit/_base/scroll.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/includes/js/dijit/_base/scroll.js b/includes/js/dijit/_base/scroll.js deleted file mode 100644 index 2aeac5a..0000000 --- a/includes/js/dijit/_base/scroll.js +++ /dev/null @@ -1,29 +0,0 @@ -if(!dojo._hasResource["dijit._base.scroll"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dijit._base.scroll"] = true; -dojo.provide("dijit._base.scroll"); - -dijit.scrollIntoView = function(/* DomNode */node){ - // summary - // Scroll the passed node into view, if it is not. - - // don't rely on that node.scrollIntoView works just because the function is there - // it doesnt work in Konqueror or Opera even though the function is there and probably - // not safari either - // native scrollIntoView() causes FF3's whole window to scroll if there is no scroll bar - // on the immediate parent - // dont like browser sniffs implementations but sometimes you have to use it - // #6146: IE scrollIntoView is broken - // It's not enough just to scroll the menu node into view if - // node.scrollIntoView hides part of the parent's scrollbar, - // so just manage the parent scrollbar ourselves - var parent = node.parentNode; - var parentBottom = parent.scrollTop + dojo.marginBox(parent).h; //PORT was getBorderBox - var nodeBottom = node.offsetTop + dojo.marginBox(node).h; - if(parentBottom < nodeBottom){ - parent.scrollTop += (nodeBottom - parentBottom); - }else if(parent.scrollTop > node.offsetTop){ - parent.scrollTop -= (parent.scrollTop - node.offsetTop); - } -}; - -} |