Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto García Hierro <alberto@garciahierro.com>2018-02-12 17:01:01 +0300
committerAlberto García Hierro <alberto@garciahierro.com>2018-02-13 00:41:49 +0300
commit08a54197c0c8378811c176e69b2d70da667ac86a (patch)
treed81c220e765f218f522409f2d9fab0e733253f49 /gulpfile.js
parentb98d7a8f3b633e752855f60233e5032ea9ef3897 (diff)
Move code for the debug trace window to an external script
Chrome doesn't allow inline scripts, only external ones
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
index fa5fe8c8..2e9e67ed 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -125,6 +125,10 @@ sources.receiverJs = [
'./tabs/receiver_msp.js'
];
+sources.debugTraceJs = [
+ './js/debug_trace.js'
+];
+
sources.hexParserJs = [
'./js/workers/hex_parser.js',
];
@@ -136,6 +140,7 @@ var output = {
mapJs: 'map.js',
receiverCss: 'receiver-msp.css',
receiverJs: 'receiver-msp.js',
+ debugTraceJs: 'debug-trace.js',
hexParserJs: 'hex_parser.js',
};