Uses template string instead of concat strings

This commit is contained in:
Zeno Rocha
2015-09-22 08:33:34 -07:00
parent e2b9ba69a6
commit b4a748f89f
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ class ClipboardAction {
});
}
else {
this.fireEvent('error', 'Cannot complete ' + this.action + ' operation');
this.fireEvent('error', `Cannot execute ${this.action} operation`);
}
this.clearSelection();