Skip to content

Commit

Permalink
fixed bug: "Direct url for some apps don't work #30"
Browse files Browse the repository at this point in the history
  • Loading branch information
waldobronchart committed May 2, 2015
1 parent 218f82e commit 558a4ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/javascripts/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function ShortcutMapper() {
};

this._appNameToHash = function(name) {
return name.replace(" ", "");
return name.replace(/ /g, "");
};

this.selectApplication = function(name) {
Expand Down

0 comments on commit 558a4ce

Please sign in to comment.