Repository: cloudstack Updated Branches: refs/heads/master 9717bbdc5 -> e92f42946
CLOUDSTACK-7910: UI > Instance Wizard > declare serviceOfferingObjs before using it. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e92f4294 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e92f4294 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e92f4294 Branch: refs/heads/master Commit: e92f4294637b535bbab2524be9e7062514f07d62 Parents: 9717bbd Author: Jessica Wang <[email protected]> Authored: Thu Nov 13 16:24:41 2014 -0800 Committer: Jessica Wang <[email protected]> Committed: Thu Nov 13 16:26:09 2014 -0800 ---------------------------------------------------------------------- ui/scripts/instanceWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e92f4294/ui/scripts/instanceWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/instanceWizard.js b/ui/scripts/instanceWizard.js index 3a588e7..0baad4f 100644 --- a/ui/scripts/instanceWizard.js +++ b/ui/scripts/instanceWizard.js @@ -16,7 +16,7 @@ // under the License. (function($, cloudStack) { - var zoneObjs, hypervisorObjs, featuredTemplateObjs, communityTemplateObjs, myTemplateObjs, featuredIsoObjs, community, networkObjs; + var zoneObjs, hypervisorObjs, featuredTemplateObjs, communityTemplateObjs, myTemplateObjs, featuredIsoObjs, serviceOfferingObjs, community, networkObjs; var selectedZoneObj, selectedTemplateObj, selectedHypervisor, selectedDiskOfferingObj; var selectedTemplateOrIso; //'select-template', 'select-iso' var step6ContainerType = 'nothing-to-select'; //'nothing-to-select', 'select-network', 'select-security-group', 'select-advanced-sg'(advanced sg-enabled zone)
