bug 5881: disabled domain edit for now since it doesn't work as intended.

- Also fixed creating user and domain in the test provisioning tool to make use of the new API format.
This commit is contained in:
will 2010-11-08 13:00:14 -08:00
parent db5196d110
commit 3be51b5b8c
2 changed files with 3 additions and 3 deletions

View File

@ -404,7 +404,7 @@
</div>
<div class="grid_smallgenrow_cell" style="width: 10%;" id="domain_links">
<div class="netgrid_celltitles">
<a href="#" id="edit_link">Edit</a> | <a href="#" id="delete_link">Delete</a></div>
<a href="#" id="delete_link">Delete</a></div>
</div>
</div>
</div>

View File

@ -322,7 +322,7 @@ $(document).ready(function() {
dataType: "json",
async: false,
success: function(json) {
userJSONToTemplate(json.createuserresponse, template);
userJSONToTemplate(json.createuserresponse.user, template);
loadingImg.hide();
rowContainer.show();
},
@ -552,7 +552,7 @@ $(document).ready(function() {
dataType: "json",
async: false,
success: function(json) {
domainJSONToTemplate(json.createdomainresponse, template);
domainJSONToTemplate(json.createdomainresponse.domain, template);
loadingImg.hide();
rowContainer.show();
},