mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-22 18:56:31 +00:00
Misc changes (#322)
* Fix lint warnings about missing empty line above `module.exports` Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com> * Re-build CSS Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com>
This commit is contained in:
parent
66b38105ca
commit
04efd16ca3
@ -6347,7 +6347,7 @@ body {
|
|||||||
padding: 0; }
|
padding: 0; }
|
||||||
.section-footer hero-icon .icon {
|
.section-footer hero-icon .icon {
|
||||||
margin: 0 13px; }
|
margin: 0 13px; }
|
||||||
.section-footer [open-external]:hover {
|
.section-footer [os-open-external]:hover {
|
||||||
color: #85898c;
|
color: #85898c;
|
||||||
text-decoration: underline; }
|
text-decoration: underline; }
|
||||||
|
|
||||||
|
@ -24,4 +24,5 @@ const angular = require('angular');
|
|||||||
const MODULE_NAME = 'Etcher.Components.ProgressButton';
|
const MODULE_NAME = 'Etcher.Components.ProgressButton';
|
||||||
const ProgressButton = angular.module(MODULE_NAME, []);
|
const ProgressButton = angular.module(MODULE_NAME, []);
|
||||||
ProgressButton.directive('progressButton', require('./directives/progress-button'));
|
ProgressButton.directive('progressButton', require('./directives/progress-button'));
|
||||||
|
|
||||||
module.exports = MODULE_NAME;
|
module.exports = MODULE_NAME;
|
||||||
|
@ -24,4 +24,5 @@ const angular = require('angular');
|
|||||||
const MODULE_NAME = 'Etcher.OS.Dropzone';
|
const MODULE_NAME = 'Etcher.OS.Dropzone';
|
||||||
const OSDropzone = angular.module(MODULE_NAME, []);
|
const OSDropzone = angular.module(MODULE_NAME, []);
|
||||||
OSDropzone.directive('osDropzone', require('./directives/dropzone'));
|
OSDropzone.directive('osDropzone', require('./directives/dropzone'));
|
||||||
|
|
||||||
module.exports = MODULE_NAME;
|
module.exports = MODULE_NAME;
|
||||||
|
@ -27,4 +27,5 @@ const angular = require('angular');
|
|||||||
const MODULE_NAME = 'Etcher.OS.Notification';
|
const MODULE_NAME = 'Etcher.OS.Notification';
|
||||||
const OSNotification = angular.module(MODULE_NAME, []);
|
const OSNotification = angular.module(MODULE_NAME, []);
|
||||||
OSNotification.service('OSNotificationService', require('./services/notification'));
|
OSNotification.service('OSNotificationService', require('./services/notification'));
|
||||||
|
|
||||||
module.exports = MODULE_NAME;
|
module.exports = MODULE_NAME;
|
||||||
|
@ -24,4 +24,5 @@ const angular = require('angular');
|
|||||||
const MODULE_NAME = 'Etcher.OS.OpenExternal';
|
const MODULE_NAME = 'Etcher.OS.OpenExternal';
|
||||||
const OSOpenExternal = angular.module(MODULE_NAME, []);
|
const OSOpenExternal = angular.module(MODULE_NAME, []);
|
||||||
OSOpenExternal.directive('osOpenExternal', require('./directives/open-external'));
|
OSOpenExternal.directive('osOpenExternal', require('./directives/open-external'));
|
||||||
|
|
||||||
module.exports = MODULE_NAME;
|
module.exports = MODULE_NAME;
|
||||||
|
@ -28,4 +28,5 @@ const angular = require('angular');
|
|||||||
const MODULE_NAME = 'Etcher.OS.WindowProgress';
|
const MODULE_NAME = 'Etcher.OS.WindowProgress';
|
||||||
const OSWindowProgress = angular.module(MODULE_NAME, []);
|
const OSWindowProgress = angular.module(MODULE_NAME, []);
|
||||||
OSWindowProgress.service('OSWindowProgressService', require('./services/window-progress'));
|
OSWindowProgress.service('OSWindowProgressService', require('./services/window-progress'));
|
||||||
|
|
||||||
module.exports = MODULE_NAME;
|
module.exports = MODULE_NAME;
|
||||||
|
@ -27,4 +27,5 @@ const angular = require('angular');
|
|||||||
const MODULE_NAME = 'Etcher.Utils.Notifier';
|
const MODULE_NAME = 'Etcher.Utils.Notifier';
|
||||||
const Notifier = angular.module(MODULE_NAME, []);
|
const Notifier = angular.module(MODULE_NAME, []);
|
||||||
Notifier.service('NotifierService', require('./services/notifier'));
|
Notifier.service('NotifierService', require('./services/notifier'));
|
||||||
|
|
||||||
module.exports = MODULE_NAME;
|
module.exports = MODULE_NAME;
|
||||||
|
@ -27,4 +27,5 @@ const angular = require('angular');
|
|||||||
const MODULE_NAME = 'Etcher.Utils.Path';
|
const MODULE_NAME = 'Etcher.Utils.Path';
|
||||||
const Path = angular.module(MODULE_NAME, []);
|
const Path = angular.module(MODULE_NAME, []);
|
||||||
Path.filter('basename', require('./filters/basename'));
|
Path.filter('basename', require('./filters/basename'));
|
||||||
|
|
||||||
module.exports = MODULE_NAME;
|
module.exports = MODULE_NAME;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user