Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix #261
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Dec 16, 2013
1 parent 6bc96c7 commit 8416302
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/src/plugins/gui.ajax/res/js/ajaxplorer.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ Class.create("ActivityMonitor", {
/**
* Listener to clear the timer
*/
activityObserver : function(){
activityObserver : function(event){
if(event && event.memo && event.memo.discrete){
return;
}
if(this._state == 'warning') return;
if(this.timer){
window.clearTimeout(this.timer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ Class.create("Connexion", {
if(this.onComplete){
this.onComplete(transport);
}
document.fire("ajaxplorer:server_answer");
document.fire("ajaxplorer:server_answer", this);
},

/**
Expand Down
2 changes: 1 addition & 1 deletion core/src/plugins/gui.ajax/res/js/ajaxplorer_boot.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 8416302

Please sign in to comment.