From 04efd16ca3b5dfc9bea72ac93714a3ac1c854181 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Wed, 13 Apr 2016 15:45:52 -0400 Subject: [PATCH] Misc changes (#322) * Fix lint warnings about missing empty line above `module.exports` Signed-off-by: Juan Cruz Viotti * Re-build CSS Signed-off-by: Juan Cruz Viotti --- build/css/main.css | 2 +- lib/browser/components/progress-button/progress-button.js | 1 + lib/browser/os/dropzone/dropzone.js | 1 + lib/browser/os/notification/notification.js | 1 + lib/browser/os/open-external/open-external.js | 1 + lib/browser/os/window-progress/window-progress.js | 1 + lib/browser/utils/notifier/notifier.js | 1 + lib/browser/utils/path/path.js | 1 + 8 files changed, 8 insertions(+), 1 deletion(-) diff --git a/build/css/main.css b/build/css/main.css index 7794b513..42e44393 100644 --- a/build/css/main.css +++ b/build/css/main.css @@ -6347,7 +6347,7 @@ body { padding: 0; } .section-footer hero-icon .icon { margin: 0 13px; } - .section-footer [open-external]:hover { + .section-footer [os-open-external]:hover { color: #85898c; text-decoration: underline; } diff --git a/lib/browser/components/progress-button/progress-button.js b/lib/browser/components/progress-button/progress-button.js index 23d74d56..3e851278 100644 --- a/lib/browser/components/progress-button/progress-button.js +++ b/lib/browser/components/progress-button/progress-button.js @@ -24,4 +24,5 @@ const angular = require('angular'); const MODULE_NAME = 'Etcher.Components.ProgressButton'; const ProgressButton = angular.module(MODULE_NAME, []); ProgressButton.directive('progressButton', require('./directives/progress-button')); + module.exports = MODULE_NAME; diff --git a/lib/browser/os/dropzone/dropzone.js b/lib/browser/os/dropzone/dropzone.js index fc4d0045..f5318438 100644 --- a/lib/browser/os/dropzone/dropzone.js +++ b/lib/browser/os/dropzone/dropzone.js @@ -24,4 +24,5 @@ const angular = require('angular'); const MODULE_NAME = 'Etcher.OS.Dropzone'; const OSDropzone = angular.module(MODULE_NAME, []); OSDropzone.directive('osDropzone', require('./directives/dropzone')); + module.exports = MODULE_NAME; diff --git a/lib/browser/os/notification/notification.js b/lib/browser/os/notification/notification.js index 85ee3071..6b1e8378 100644 --- a/lib/browser/os/notification/notification.js +++ b/lib/browser/os/notification/notification.js @@ -27,4 +27,5 @@ const angular = require('angular'); const MODULE_NAME = 'Etcher.OS.Notification'; const OSNotification = angular.module(MODULE_NAME, []); OSNotification.service('OSNotificationService', require('./services/notification')); + module.exports = MODULE_NAME; diff --git a/lib/browser/os/open-external/open-external.js b/lib/browser/os/open-external/open-external.js index 565c5994..ebb25cae 100644 --- a/lib/browser/os/open-external/open-external.js +++ b/lib/browser/os/open-external/open-external.js @@ -24,4 +24,5 @@ const angular = require('angular'); const MODULE_NAME = 'Etcher.OS.OpenExternal'; const OSOpenExternal = angular.module(MODULE_NAME, []); OSOpenExternal.directive('osOpenExternal', require('./directives/open-external')); + module.exports = MODULE_NAME; diff --git a/lib/browser/os/window-progress/window-progress.js b/lib/browser/os/window-progress/window-progress.js index 3144c827..c75c9803 100644 --- a/lib/browser/os/window-progress/window-progress.js +++ b/lib/browser/os/window-progress/window-progress.js @@ -28,4 +28,5 @@ const angular = require('angular'); const MODULE_NAME = 'Etcher.OS.WindowProgress'; const OSWindowProgress = angular.module(MODULE_NAME, []); OSWindowProgress.service('OSWindowProgressService', require('./services/window-progress')); + module.exports = MODULE_NAME; diff --git a/lib/browser/utils/notifier/notifier.js b/lib/browser/utils/notifier/notifier.js index f2fbd712..eb19e2f8 100644 --- a/lib/browser/utils/notifier/notifier.js +++ b/lib/browser/utils/notifier/notifier.js @@ -27,4 +27,5 @@ const angular = require('angular'); const MODULE_NAME = 'Etcher.Utils.Notifier'; const Notifier = angular.module(MODULE_NAME, []); Notifier.service('NotifierService', require('./services/notifier')); + module.exports = MODULE_NAME; diff --git a/lib/browser/utils/path/path.js b/lib/browser/utils/path/path.js index 9088a33a..e5839b21 100644 --- a/lib/browser/utils/path/path.js +++ b/lib/browser/utils/path/path.js @@ -27,4 +27,5 @@ const angular = require('angular'); const MODULE_NAME = 'Etcher.Utils.Path'; const Path = angular.module(MODULE_NAME, []); Path.filter('basename', require('./filters/basename')); + module.exports = MODULE_NAME;