]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui3/build/scrollview/scrollview-base-ie.js
Release 6.2.2
[Github/sugarcrm.git] / include / javascript / yui3 / build / scrollview / scrollview-base-ie.js
1 /*
2  Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3  Code licensed under the BSD License:
4  http://developer.yahoo.com/yui/license.html
5  version: 3.3.0
6  build: 3167
7  */
8 YUI.add('scrollview-base-ie',function(Y){Y.mix(Y.ScrollView.prototype,{_fixIESelect:function(bb,cb){this._cbDoc=cb.get("ownerDocument");this._nativeBody=Y.Node.getDOMNode(Y.one("body",this._cbDoc));cb.on("mousedown",function(){this._selectstart=this._nativeBody.onselectstart;this._nativeBody.onselectstart=this._iePreventSelect;this._cbDoc.once("mouseup",this._ieRestoreSelect,this);},this);},_iePreventSelect:function(){return false;},_ieRestoreSelect:function(){this._nativeBody.onselectstart=this._selectstart;}},true);},'3.3.0',{requires:['scrollview-base']});