This commit is contained in:
Robin Ward
2014-12-03 16:41:27 -05:00
parent 52f7f8e471
commit 393607d25c
4 changed files with 11 additions and 3 deletions
+4
View File
@@ -10112,6 +10112,10 @@ enifed("ember-handlebars/string",
@return {Handlebars.SafeString} a string that will not be html escaped by Handlebars
*/
function htmlSafe(str) {
if (str === undefined || str === null) {
return "";
}
if (typeof str !== 'string') {
str = ''+str;
}
+4
View File
@@ -9819,6 +9819,10 @@ enifed("ember-handlebars/string",
@return {Handlebars.SafeString} a string that will not be html escaped by Handlebars
*/
function htmlSafe(str) {
if (str === undefined || str === null) {
return "";
}
if (typeof str !== 'string') {
str = ''+str;
}