CLOUDSTACK-747: UI - create network offering - default sourceNat type as per account instead of per zone.
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/0eceb0da Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/0eceb0da Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/0eceb0da Branch: refs/heads/master Commit: 0eceb0da603dfb93df9314b6f034ca32d45a14b6 Parents: 75df906 Author: Jessica Wang <jessicaw...@apache.org> Authored: Tue May 21 11:59:03 2013 -0700 Committer: Jessica Wang <jessicaw...@apache.org> Committed: Tue May 21 11:59:03 2013 -0700 ---------------------------------------------------------------------- ui/scripts/configuration.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/0eceb0da/ui/scripts/configuration.js ---------------------------------------------------------------------- diff --git a/ui/scripts/configuration.js b/ui/scripts/configuration.js index 92c3d00..5762e64 100644 --- a/ui/scripts/configuration.js +++ b/ui/scripts/configuration.js @@ -1702,9 +1702,9 @@ dependsOn: 'service.SourceNat.isEnabled', select: function(args) { args.response.success({ - data: [ - { id: 'perzone', description: 'Per zone'}, - { id: 'peraccount', description: 'Per account'} + data: [ + { id: 'peraccount', description: 'Per account'}, + { id: 'perzone', description: 'Per zone'} ] }); }