GUI: clean up coding style.
Change-Id: I1dcb036a12896bab88dfe2752c098fe5e8dfc009
diff --git a/web/gui/src/main/webapp/app/fw/util/keys.js b/web/gui/src/main/webapp/app/fw/util/keys.js
index d56402a..3cf1016 100644
--- a/web/gui/src/main/webapp/app/fw/util/keys.js
+++ b/web/gui/src/main/webapp/app/fw/util/keys.js
@@ -21,7 +21,11 @@
'use strict';
// references to injected services
- var $log, fs, ts, ns, qhs;
+ var $log, $timeout, fs, ts, ns, qhs;
+
+ // constants
+ var eeggMin = 'shiftO',
+ eeggMax = 'shiftONOS';
// internal state
var enabled = true,
@@ -32,20 +36,21 @@
viewKeys: {},
viewFn: null,
viewGestures: []
- };
+ },
+ eegg = '';
- var eegg = '', eeggMax = 'shiftONOS', eeggMin = 'shiftO';
-
- function layEgg(lastKey) {
- eegg += lastKey;
- if (eeggMax.indexOf(eegg) == 0) {
- if (eeggMax == eegg) {
- d3.select('body').append('div').attr('id', 'eegg').append('img').attr('src', 'data/img/eegg.png');
- setTimeout(function () { d3.select('#eegg').remove(); }, 3000);
+ function layEgg(key) {
+ eegg += key;
+ if (eeggMax.indexOf(eegg) === 0) {
+ if (eegg === eeggMax) {
+ d3.select('body').append('div').attr('id', 'eegg')
+ .append('img').attr('src', 'data/img/eegg.png');
+ $timeout(function () { d3.select('#eegg').remove(); }, 3000);
eegg = '';
}
return true;
- } else if (eeggMin != eegg) {
+ }
+ if (eegg !== eeggMin) {
eegg = '';
}
return false;
@@ -218,10 +223,11 @@
angular.module('onosUtil')
.factory('KeyService',
- ['$log', 'FnService', 'ThemeService', 'NavService',
+ ['$log', '$timeout', 'FnService', 'ThemeService', 'NavService',
- function (_$log_, _fs_, _ts_, _ns_) {
+ function (_$log_, _$timeout_, _fs_, _ts_, _ns_) {
$log = _$log_;
+ $timeout = _$timeout_;
fs = _fs_;
ts = _ts_;
ns = _ns_;
diff --git a/web/gui/src/main/webapp/app/onos.css b/web/gui/src/main/webapp/app/onos.css
index 3ed0dd5..b82a6e5 100644
--- a/web/gui/src/main/webapp/app/onos.css
+++ b/web/gui/src/main/webapp/app/onos.css
@@ -67,6 +67,6 @@
transform: translate(-50%, -50%);
box-shadow: 2px 2px 24px 5px #888;
background-color: #eee;
- margin: 0px;
+ margin: 0;
padding: 10px;
}