witten
/
luminotes
Archived
1
0
Fork 0

Increased speed of note hiding animations.

This commit is contained in:
Dan Helfman 2008-07-30 20:38:20 -07:00
parent 3950b21abc
commit 17b49b404c
2 changed files with 3 additions and 3 deletions

View File

@ -673,7 +673,7 @@ Editor.prototype.shutdown = function( event ) {
disconnectAll( this.document );
}
blindUp( iframe, options = { "duration": 0.5, afterFinish: function () {
blindUp( iframe, options = { "duration": 0.25, afterFinish: function () {
try {
removeElement( note_controls );
removeElement( iframe );

View File

@ -2323,7 +2323,7 @@ Wiki.prototype.clear_messages = function () {
for ( var i in results ) {
var result = results[ i ];
blindUp( result, options = { "duration": 0.5, afterFinish: function () {
blindUp( result, options = { "duration": 0.25, afterFinish: function () {
try {
for ( var j in result.nodes )
disconnectAll( result.nodes[ j ] );
@ -2336,7 +2336,7 @@ Wiki.prototype.clear_messages = function () {
for ( var i in results ) {
var result = results[ i ];
blindUp( result, options = { "duration": 0.5, afterFinish: function () {
blindUp( result, options = { "duration": 0.25, afterFinish: function () {
try {
removeElement( result );
} catch ( e ) { }