diff --git a/webadmin/src/js/client.js b/webadmin/src/js/client.js index 7a7e8ae85..a7e33ce52 100644 --- a/webadmin/src/js/client.js +++ b/webadmin/src/js/client.js @@ -1,7 +1,6 @@ 'use strict'; /* global angular */ -/* global EventSource */ angular.module('Application').service('Client', ['$http', 'md5', 'Notification', function ($http, md5, Notification) { var client = null; @@ -613,11 +612,6 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification', else return callback(new Error('App not found')); }; - Client.prototype.getAppLogStream = function (appId) { - var source = new EventSource(client.apiOrigin + '/api/v1/apps/' + appId + '/logstream'); - return source; - }; - Client.prototype.getAppIconUrls = function (app) { return { cloudron: app.iconUrl ? (this.apiOrigin + app.iconUrl + '?access_token=' + token) : null,