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

Commit

Permalink
Prefix an icon to the PluginEditor
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Dec 17, 2013
1 parent 780ebd3 commit 24f1a7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/plugins/editor.ajxp_plugin/class.PluginEditor.js
Expand Up @@ -110,8 +110,8 @@ Class.create("PluginEditor", AbstractEditor, {
},

updateTitle: function(label){
this.element.down("span.header_label").update(label);
this.element.fire("editor:updateTitle", label);
this.element.down("span.header_label").update("<span class='icon-puzzle-piece'></span> " + label);
this.element.fire("editor:updateTitle", "<span class='icon-puzzle-piece'></span> " + label);
},

loadPluginConfig : function(){
Expand Down

0 comments on commit 24f1a7d

Please sign in to comment.