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/03505901 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/03505901 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/03505901 Branch: refs/heads/master Commit: 03505901bccd507a391955a3850a876194b15246 Parents: 2ee3d42 Author: Jessica Wang <[email protected]> Authored: Thu Nov 13 16:24:41 2014 -0800 Committer: Jessica Wang <[email protected]> Committed: Thu Nov 13 16:24:41 2014 -0800 ---------------------------------------------------------------------- ui/scripts/instanceWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/03505901/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)
