fixed minor code style issues

This commit is contained in:
Hauke Klement
2015-03-03 11:31:20 +01:00
parent 7477d4c6dd
commit b5eb2f6129
3 changed files with 7 additions and 7 deletions

View File

@ -13,8 +13,8 @@ $(function() {
var THEME = 'ace/theme/textmate';
var editors = [];
var active_file = undefined;
var active_frame = undefined;
var active_file;
var active_frame;
var running = false;
var flowrUrl = 'http://vm-teusner-webrtc.eaalab.hpi.uni-potsdam.de:3000/api/exceptioninfo?id=&lang=auto';
@ -107,7 +107,7 @@ $(function() {
};
var evaluateCode = function(url, streamed, callback) {
eval('evaluateCode' + (streamed ? 'With' : 'Without') + 'StreamedResponse')(url, callback);
(streamed ? evaluateCodeWithStreamedResponse : evaluateCodeWithoutStreamedResponse)(url, callback);
};
var evaluateCodeWithStreamedResponse = function(url, callback) {