From b335b6da7dcd608e1889dac1e2d244cd62d66474 Mon Sep 17 00:00:00 2001 From: phamt Date: Tue, 4 Oct 2011 13:55:27 +0000 Subject: [PATCH] Renamed loadGroups() function for service page so UI loads correctly. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10694 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/custom/zvm.js | 2 +- xCAT-UI/js/custom/zvmUtils.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-UI/js/custom/zvm.js b/xCAT-UI/js/custom/zvm.js index 9db6443db..d98ae60f7 100644 --- a/xCAT-UI/js/custom/zvm.js +++ b/xCAT-UI/js/custom/zvm.js @@ -58,7 +58,7 @@ zvmPlugin.prototype.loadServiceProvisionPage = function(tabId) { // Load zVMs, groups, and images into their respective columns loadzVMs(zvmCol); - loadGroups(groupCol); + loadSrvGroups(groupCol); loadOSImages(imageCol); provRow.children('td').css({ diff --git a/xCAT-UI/js/custom/zvmUtils.js b/xCAT-UI/js/custom/zvmUtils.js index b29552388..f3cfc7145 100644 --- a/xCAT-UI/js/custom/zvmUtils.js +++ b/xCAT-UI/js/custom/zvmUtils.js @@ -2667,7 +2667,7 @@ function loadzVMs(col) { * Table column where OS images will be placed * @return Nothing */ -function loadGroups(col) { +function loadSrvGroups(col) { // Get group names and description and append to group column var groupNames = $.cookie('srv_groups').split(','); var groupBlock, radio, args, name, ip, hostname, desc;