mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-30 18:28:39 +00:00
Auto fixes
This commit is contained in:
parent
46d85add69
commit
23f1bb3345
2
Chart/Chart.js
vendored
2
Chart/Chart.js
vendored
|
|
@ -500,7 +500,7 @@
|
|||
text: {
|
||||
title: false,
|
||||
subtitle: false,
|
||||
footer: false,
|
||||
footer: false
|
||||
},
|
||||
legend: false
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
(function (jsOMS, undefined) {
|
||||
jsOMS.Client = function () {
|
||||
this.port = 80;
|
||||
this.ip = '127.0.0.1';
|
||||
this.protocol = '';
|
||||
jsOMS.Client = function (ip, port, protocol) {
|
||||
this.port = port;
|
||||
this.ip = ip;
|
||||
this.protocol = protocol;
|
||||
this.connection = null;
|
||||
this.messages = [];
|
||||
};
|
||||
|
||||
jsOMS.Client.prototype.setMessage = function(id, callback) {
|
||||
this.messages[id] = callback;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user