Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/90fd7191df3a5c881ee30edd2bc6a45cda557ea3/resources/library/applications/Calculator.wgt/js/sankore.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard

22 lines
568 B

7 years ago
/*jshint browser:true, devel:true*/
if (!('sankore' in window)) {
window.sankore = {
preferences: {
state: ''
},
setPreference: function (name, value) {
console.log('Preference "' + name + '" set to : ' + value);
this.preferences[name] = value;
},
preference: function (name) {
console.log('Accessing "' + name + '"');
return this.preferences[name] || '';
},
locale: function () {
return window.navigator.language;
}
};
}