]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/ytree/TreeView/anim/TVFadeOut.js
Release 6.5.0
[Github/sugarcrm.git] / include / ytree / TreeView / anim / TVFadeOut.js
1 /* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
2 YAHOO.widget.TVFadeOut=function(el,callback){this.el=el;this.callback=callback;this.logger=new ygLogger("TVFadeOut");};YAHOO.widget.TVFadeOut.prototype={animate:function(){var tvanim=this;var dur=0.4;var a=new YAHOO.util.Anim(this.el,{opacity:{from:1,to:0.1,unit:""}},dur);a.onComplete.subscribe(function(){tvanim.onComplete();});a.animate();},onComplete:function(){var s=this.el.style;s.display="none";s.filter="alpha(opacity=100)";this.callback();}};