mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-06-19 05:40:12 +10:00
Update manager and add features for App Installer.
This commit is contained in:
@@ -102,4 +102,20 @@
|
||||
get: function() { return ext.System.UI.SplashImage; },
|
||||
});
|
||||
} catch (e) {}
|
||||
// 下面是有关 String 方法的补充
|
||||
if (typeof String.prototype.trim !== "function") {
|
||||
String.prototype.trim = function() {
|
||||
return Bridge.String.trim(this);
|
||||
};
|
||||
}
|
||||
if (typeof String.prototype.toLowerCase !== "function") {
|
||||
String.prototype.toLowerCase = function() {
|
||||
return Bridge.String.tolower(this);
|
||||
};
|
||||
}
|
||||
if (typeof String.prototype.toUpperCase !== "function") {
|
||||
String.prototype.toUpperCase = function() {
|
||||
return Bridge.String.toupper(this);
|
||||
};
|
||||
}
|
||||
})(this);
|
||||
Reference in New Issue
Block a user