mirror of
https://github.com/nicolargo/glances.git
synced 2026-03-13 11:28:12 -04:00
replace simple quote by double quote
This commit is contained in:
@@ -4,7 +4,7 @@ import angular from "angular";
|
||||
import GlancesPluginAlertController from "./controller";
|
||||
import template from "./view.html";
|
||||
|
||||
export default angular.module('glancesApp').component('glancesPluginAlert', {
|
||||
export default angular.module("glancesApp").component("glancesPluginAlert", {
|
||||
controller: GlancesPluginAlertController,
|
||||
controllerAs: 'vm',
|
||||
templateUrl: template,
|
||||
|
||||
@@ -44,4 +44,4 @@ function GlancesPluginHelper () {
|
||||
return plugin;
|
||||
}
|
||||
|
||||
export default angular.module('glancesApp').service('GlancesPluginHelper', GlancesPluginHelper);
|
||||
export default angular.module("glancesApp").service("GlancesPluginHelper", GlancesPluginHelper);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
import angular from 'angular';
|
||||
import angular from "angular";
|
||||
|
||||
function GlancesStats ($http, $q, $rootScope, $timeout, GlancesPluginHelper, REFRESH_TIME, CONFIG, ARGUMENTS) {
|
||||
|
||||
@@ -70,4 +70,4 @@ function GlancesStats ($http, $q, $rootScope, $timeout, GlancesPluginHelper, REF
|
||||
};
|
||||
}
|
||||
|
||||
export default angular.module('glancesApp').service('GlancesStats', GlancesStats);
|
||||
export default angular.module("glancesApp").service("GlancesStats", GlancesStats);
|
||||
|
||||
Reference in New Issue
Block a user