From 2f01fe57a8d37767827d6db42850aef86a767c53 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 15 Nov 2010 10:39:52 +0300 Subject: add dijit/dojo stuff; initial ui mockup --- lib/dojo/fx/Toggler.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 lib/dojo/fx/Toggler.js (limited to 'lib/dojo/fx/Toggler.js') diff --git a/lib/dojo/fx/Toggler.js b/lib/dojo/fx/Toggler.js new file mode 100644 index 000000000..b8bc639ce --- /dev/null +++ b/lib/dojo/fx/Toggler.js @@ -0,0 +1,30 @@ +/* + Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved. + Available via Academic Free License >= 2.1 OR the modified BSD license. + see: http://dojotoolkit.org/license for details +*/ + + +if(!dojo._hasResource["dojo.fx.Toggler"]){ +dojo._hasResource["dojo.fx.Toggler"]=true; +dojo.provide("dojo.fx.Toggler"); +dojo.declare("dojo.fx.Toggler",null,{node:null,showFunc:dojo.fadeIn,hideFunc:dojo.fadeOut,showDuration:200,hideDuration:200,constructor:function(_1){ +var _2=this; +dojo.mixin(_2,_1); +_2.node=_1.node; +_2._showArgs=dojo.mixin({},_1); +_2._showArgs.node=_2.node; +_2._showArgs.duration=_2.showDuration; +_2.showAnim=_2.showFunc(_2._showArgs); +_2._hideArgs=dojo.mixin({},_1); +_2._hideArgs.node=_2.node; +_2._hideArgs.duration=_2.hideDuration; +_2.hideAnim=_2.hideFunc(_2._hideArgs); +dojo.connect(_2.showAnim,"beforeBegin",dojo.hitch(_2.hideAnim,"stop",true)); +dojo.connect(_2.hideAnim,"beforeBegin",dojo.hitch(_2.showAnim,"stop",true)); +},show:function(_3){ +return this.showAnim.play(_3||0); +},hide:function(_4){ +return this.hideAnim.play(_4||0); +}}); +} -- cgit v1.2.3