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

Commit

Permalink
Fix #708: Do not send tab update event inside infoPanel.
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Nov 12, 2014
1 parent e698287 commit 1626f9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Expand Up @@ -314,6 +314,7 @@ Class.create("NotificationLoader", {
"silentLoading":true,
"fixedSortColumn":"event_time",
"fixedSortDirection":"desc",
"muteUpdateTitleEvent":true,
"nodeProviderProperties":{
"get_action":"get_my_feed",
"connexion_discrete":true,
Expand Down
2 changes: 1 addition & 1 deletion core/src/plugins/gui.ajax/res/js/ajaxplorer.js

Large diffs are not rendered by default.

Expand Up @@ -344,7 +344,9 @@ Class.create("FilesList", SelectableElements, {
if(!base){
try{base = ajaxplorer.user.repositories.get(ajaxplorer.repositoryId).getLabel();}catch(e){}
}
this.htmlElement.fire("editor:updateTitle", base);
if(!this.options.muteUpdateTitleEvent){
this.htmlElement.fire("editor:updateTitle", base);
}
this.empty();
this.fill(this.crtContext);
this.removeOnLoad();
Expand Down

0 comments on commit 1626f9f

Please sign in to comment.