You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*
Format the no matches message, substituting the %@ placeholder with the
html-escaped user input
*/
options.formatNoMatches = function(term) {
var text = self.get('typeaheadNoMatchesText');
if (text instanceof Ember.Handlebars.SafeString) {
text = text.string;
}
term = Ember.Handlebars.Utils.escapeExpression(term);
return Ember.String.htmlSafe(Ember.String.fmt(text, term));
};
/*
Format the error message, substituting the %@ placeholder with the promise
rejection reason
*/
options.formatAjaxError = function(jqXHR, textStatus, errorThrown) {
var text = self.get('typeaheadErrorText');
return Ember.String.htmlSafe(Ember.String.fmt(text, errorThrown));
};
The text was updated successfully, but these errors were encountered:
Looks like they have decided to drop it.
emberjs/ember.js#10848
Its used here (
ember-select-2/addon/components/select-2.js
Line 249 in 9df5542
And here (
ember-select-2/addon/components/select-2.js
Line 259 in 9df5542
The text was updated successfully, but these errors were encountered: