diff --git a/src/main/webapp/scripts/widgets/process-widget.js b/src/main/webapp/scripts/widgets/process-widget.js index a9311a197..05e347ec1 100644 --- a/src/main/webapp/scripts/widgets/process-widget.js +++ b/src/main/webapp/scripts/widgets/process-widget.js @@ -58,16 +58,16 @@ ProcessWidget.prototype.showUndo = function(historyEntry) { this._latestHistoryEntry = historyEntry; - this._div.empty().show().html( + this._div.empty().html( '
' - ); + ).slideDown().delay(5000).slideUp(); ; var elmts = DOM.bind(this._div); - + elmts.description.text(historyEntry.description); elmts.undo.click(function() { self.undo(); }); - elmts.close.click(function() { $(".process-panel-inner").hide(); }); + elmts.close.click(function() { $(".process-panel-inner").slideUp(); }); }; ProcessWidget.prototype.undo = function() {