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: {
title: false,
subtitle: false,
footer: false,
footer: false
},
legend: false
};

View File

@ -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;
};