Skip to content

Commit 5d045a5

Browse files
committed
Fixing other polyfill reference
1 parent df409dd commit 5d045a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/mixins/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Semantic.BaseMixin = Ember.Mixin.create({
220220
custom[key] = Ember.run.bind(this, this._updateFunctionWithParameters(key, value));
221221
}
222222
if (typeof value === 'object') {
223-
if (Ember.String.isHTMLSafe(value)) {
223+
if (isHTMLSafe(value)) {
224224
custom[key] = this._unwrapHTMLSafe(value);
225225
}
226226
}

0 commit comments

Comments
 (0)