Commit f4b14268 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

export

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64347 954022d7-b5bf-4e40-9824-e11837661b57
parent 7cc796de
......@@ -4,11 +4,13 @@ if (typeof String.prototype.startsWith != 'function') {
String.prototype.startsWith = function (str){
return this.indexOf(str) === 0;
};
String.prototype['startsWith'] = String.prototype.startsWith;
}
if (typeof String.prototype.endsWith !== 'function') {
String.prototype.endsWith = function(suffix) {
return this.indexOf(suffix, this.length - suffix.length) !== -1;
};
String.prototype['endsWith'] = String.prototype.endsWith;
}
var g_sMainServiceLocalUrl = "/CanvasService.ashx";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment