Improve output: distinguish between failed assertions (failures) and unexpected exceptions (errors), and print a filtered stack trace for any exception.
This commit is contained in:
commit
4f2e303079
1839 changed files with 235630 additions and 0 deletions
54
webapp/web/src/lfx/toggle.js
Normal file
54
webapp/web/src/lfx/toggle.js
Normal file
|
@ -0,0 +1,54 @@
|
|||
/*
|
||||
Copyright (c) 2004-2006, The Dojo Foundation
|
||||
All Rights Reserved.
|
||||
|
||||
Licensed under the Academic Free License version 2.1 or above OR the
|
||||
modified BSD license. For more information on Dojo licensing, see:
|
||||
|
||||
http://dojotoolkit.org/community/licensing.shtml
|
||||
*/
|
||||
|
||||
dojo.provide("dojo.lfx.toggle");
|
||||
dojo.require("dojo.lfx.*");
|
||||
|
||||
dojo.lfx.toggle.plain = {
|
||||
show: function(node, duration, easing, callback){
|
||||
dojo.style.show(node);
|
||||
if(dojo.lang.isFunction(callback)){ callback(); }
|
||||
},
|
||||
|
||||
hide: function(node, duration, easing, callback){
|
||||
dojo.style.hide(node);
|
||||
if(dojo.lang.isFunction(callback)){ callback(); }
|
||||
}
|
||||
}
|
||||
|
||||
dojo.lfx.toggle.fade = {
|
||||
show: function(node, duration, easing, callback){
|
||||
dojo.lfx.fadeShow(node, duration, easing, callback).play();
|
||||
},
|
||||
|
||||
hide: function(node, duration, easing, callback){
|
||||
dojo.lfx.fadeHide(node, duration, easing, callback).play();
|
||||
}
|
||||
}
|
||||
|
||||
dojo.lfx.toggle.wipe = {
|
||||
show: function(node, duration, easing, callback){
|
||||
dojo.lfx.wipeIn(node, duration, easing, callback).play();
|
||||
},
|
||||
|
||||
hide: function(node, duration, easing, callback){
|
||||
dojo.lfx.wipeOut(node, duration, easing, callback).play();
|
||||
}
|
||||
}
|
||||
|
||||
dojo.lfx.toggle.explode = {
|
||||
show: function(node, duration, easing, callback, explodeSrc){
|
||||
dojo.lfx.explode(explodeSrc||[0,0,0,0], node, duration, easing, callback).play();
|
||||
},
|
||||
|
||||
hide: function(node, duration, easing, callback, explodeSrc){
|
||||
dojo.lfx.implode(node, explodeSrc||[0,0,0,0], duration, easing, callback).play();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue