Add htmlSpecialChars
parent
686d2e650a
commit
41ed0c18e4
|
@ -1526,7 +1526,7 @@ class H5PCore {
|
||||||
|
|
||||||
public static $coreApi = array(
|
public static $coreApi = array(
|
||||||
'majorVersion' => 1,
|
'majorVersion' => 1,
|
||||||
'minorVersion' => 3
|
'minorVersion' => 4
|
||||||
);
|
);
|
||||||
public static $styles = array(
|
public static $styles = array(
|
||||||
'styles/h5p.css',
|
'styles/h5p.css',
|
||||||
|
|
|
@ -1099,3 +1099,10 @@ if (H5P.jQuery) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mimics how php's htmlspecialchars works (the way we use it)
|
||||||
|
*/
|
||||||
|
H5P.htmlSpecialChars = function(string) {
|
||||||
|
return string.toString().replace(/</g, '<').replace(/>/g, '>').replace(/'/g, ''').replace(/"/g, '"');
|
||||||
|
};
|
Loading…
Reference in New Issue