1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

F #2652: Erased custom classes for tabs

This commit is contained in:
juanmont 2018-12-18 10:06:18 +01:00 committed by Tino Vázquez
parent 6a348c7c77
commit dc33d72fc1
4 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ define(function(require) {
this.wizardTabId = WIZARD_TAB_ID + UniqueId.id();
this.icon = 'fa-folder';
this.title = Locale.tr("Context");
this.classes = "hypervisor only_kvm only_vcenter";
this.classes = "hypervisor";
this.contextFilesTable = new FilesTable('ContextTable' + UniqueId.id(), {
'select': true,

View File

@ -53,7 +53,7 @@ define(function(require) {
this.wizardTabId = WIZARD_TAB_ID + UniqueId.id();
this.icon = 'fa-globe';
this.title = Locale.tr("Network");
this.classes = "hypervisor only_kvm only_vcenter";
this.classes = "hypervisor";
if(opts.listener != undefined){
this.listener = opts.listener;

View File

@ -54,7 +54,7 @@ define(function(require) {
this.wizardTabId = WIZARD_TAB_ID + UniqueId.id();
this.icon = 'fa-server';
this.title = Locale.tr("Storage");
this.classes = "hypervisor only_kvm only_vcenter"
this.classes = "hypervisor"
if(opts.listener != undefined){
this.listener = opts.listener;

View File

@ -47,7 +47,7 @@ define(function(require) {
this.wizardTabId = WIZARD_TAB_ID + UniqueId.id();
this.icon = 'fa-folder-open';
this.title = Locale.tr("VM Group");
this.classes = "hypervisor only_kvm only_vcenter"
this.classes = "hypervisor"
}