mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-06-13 00:29:05 +00:00
Merge pull request #272 from gnh1201/dev
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
Fix #271
This commit is contained in:
commit
670f82fc05
|
@ -1254,7 +1254,9 @@ var ChromeObject = function() {
|
||||||
return this.getEvaluatedValue('(confirm("' + s + '") ? "true" : "false")');
|
return this.getEvaluatedValue('(confirm("' + s + '") ? "true" : "false")');
|
||||||
};
|
};
|
||||||
|
|
||||||
// @deprecated
|
/**
|
||||||
|
* @deprecated Use Chrome.setPublisherName instead of Chrome.setVendor
|
||||||
|
*/
|
||||||
this.setVendor = function(vendor) {
|
this.setVendor = function(vendor) {
|
||||||
this.setPublisherName(vendor);
|
this.setPublisherName(vendor);
|
||||||
console.warn("Deprecated: Please use setPublisherName");
|
console.warn("Deprecated: Please use setPublisherName");
|
||||||
|
|
|
@ -614,11 +614,16 @@ exports.EventTarget = StdEventTarget;
|
||||||
exports.Accessor = StdAccessor;
|
exports.Accessor = StdAccessor;
|
||||||
exports.Storage = StdStorage;
|
exports.Storage = StdStorage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated Use STD.EventTarget instead of STD.EventableObject
|
||||||
|
*/
|
||||||
|
exports.EventableObject = StdEventTarget;
|
||||||
|
|
||||||
exports.alert = alert;
|
exports.alert = alert;
|
||||||
exports.confirm = confirm;
|
exports.confirm = confirm;
|
||||||
exports.prompt = prompt;
|
exports.prompt = prompt;
|
||||||
|
|
||||||
exports.VERSIONINFO = "WelsonJS Standard Library (std.js) version 0.8.17";
|
exports.VERSIONINFO = "WelsonJS Standard Library (std.js) version 0.8.18";
|
||||||
exports.AUTHOR = "gnh1201@catswords.re.kr";
|
exports.AUTHOR = "gnh1201@catswords.re.kr";
|
||||||
exports.global = global;
|
exports.global = global;
|
||||||
exports.require = global.require;
|
exports.require = global.require;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user