(function(){
var defaultSetting = {
color:'red'
}
Setting (options) {
var self = this;
self = Object.assign(self, defaultSettings, options);
}
Setting.protoType = {
...
}
window.setting = Setting;
})(window)
(function(){
var defaultSetting = {
color:'red'
}
Setting (options) {
var self = this;
self = Object.assign(self, defaultSettings, options);
}
Setting.protoType = {
...
}
window.setting = Setting;
})(window)