mirror of
https://github.com/flarum/core.git
synced 2025-08-09 01:46:35 +02:00
Fix JSHint errors
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Handlebars.makeBoundHelper(function(text, phrase, options) {
|
||||
export default Ember.Handlebars.makeBoundHelper(function(text, phrase) {
|
||||
if (phrase) {
|
||||
var words = phrase.split(' ');
|
||||
var replacement = function(matched) {
|
||||
@@ -13,6 +13,6 @@ export default Ember.Handlebars.makeBoundHelper(function(text, phrase, options)
|
||||
);
|
||||
});
|
||||
}
|
||||
return new Handlebars.SafeString(text);
|
||||
return new Ember.Handlebars.SafeString(text);
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user