Auto fixes

This commit is contained in:
Dennis Eichhorn 2016-02-21 10:07:50 +01:00
parent 46d85add69
commit 23f1bb3345
2 changed files with 5 additions and 6 deletions

2
Chart/Chart.js vendored
View File

@ -500,7 +500,7 @@
text: { text: {
title: false, title: false,
subtitle: false, subtitle: false,
footer: false, footer: false
}, },
legend: false legend: false
}; };

View File

@ -1,12 +1,11 @@
(function (jsOMS, undefined) { (function (jsOMS, undefined) {
jsOMS.Client = function () { jsOMS.Client = function (ip, port, protocol) {
this.port = 80; this.port = port;
this.ip = '127.0.0.1'; this.ip = ip;
this.protocol = ''; this.protocol = protocol;
this.connection = null; this.connection = null;
this.messages = []; this.messages = [];
}; };
jsOMS.Client.prototype.setMessage = function(id, callback) { jsOMS.Client.prototype.setMessage = function(id, callback) {
this.messages[id] = callback; this.messages[id] = callback;
}; };