Commit 7f856315 by Bence Dányi

webui: fix js format

parent deba7118
......@@ -17,9 +17,9 @@ $(function() {
$('a[href=#]').click(function(e) {
e.preventDefault();
});
$('.host-toggle').click(function(e){
$('.host-toggle').click(function(e) {
e.preventDefault();
if($(this).find('.v4').is(':hidden')){
if ($(this).find('.v4').is(':hidden')) {
$(this).find('.v4').show();
$(this).find('.v6').hide();
$(this).parent().next().find('.host').show();
......@@ -84,20 +84,20 @@ $(function() {
var handler = arguments.callee;
var oldName = $(this).data('name');
var content = $('#vm-' + id + '-name').html();
var self=this;
var self = this;
var url = $(this).data('url');
$('#vm-'+id).addClass('editing');
$(this).unbind('click').click(function(e){
$('#vm-' + id).addClass('editing');
$(this).unbind('click').click(function(e) {
e.preventDefault();
e.stopPropagation();
$(this).unbind('click').click(handler);
$('#vm-' + id + '-name-details').show();
$('#vm-' + id + '-name').html(content);
$('#vm-'+id).removeClass('editing');
$('#vm-' + id).removeClass('editing');
})
$('#vm-' + id + '-name-details').hide();
$('#vm-' + id + '-name').html('<input type="text" value="' + oldName + '" />\
<input type="submit" value="' + gettext('Rename') + '" data-url="'+url+'"/>');
<input type="submit" value="' + gettext('Rename') + '" data-url="' + url + '"/>');
$('#vm-' + id + '-name').find('input[type="text"]').click(function(f) {
f.preventDefault();
f.stopPropagation();
......@@ -116,7 +116,7 @@ $(function() {
$('#vm-' + id + '-name').text(data.name);
$(self).click(handler);
$(self).data('name', newName);
$('#vm-'+id).removeClass('editing');
$('#vm-' + id).removeClass('editing');
}
});
})
......@@ -167,14 +167,14 @@ $(function() {
})
$('#modal').show();
});
$('.edit-template').click(function(e){
$('.edit-template').click(function(e) {
e.preventDefault();
e.stopPropagation();
var id=$(this).data('id');
var id = $(this).data('id');
$.ajax({
type: 'GET',
url: $(this).data('url'),
success: function(data){
success: function(data) {
$('#modal').show();
$('#modal-container').html(data);
}
......@@ -281,9 +281,9 @@ $(function() {
function get_vm_details(id) {
$.get('/vm/credentials/' + id, function(data) {
$('#modal-container').html(data);
$('#modal-container .host-toggle').click(function(e){
$('#modal-container .host-toggle').click(function(e) {
e.preventDefault();
if($(this).find('.v4').is(':hidden')){
if ($(this).find('.v4').is(':hidden')) {
$(this).find('.v4').show();
$(this).find('.v6').hide();
$(this).parent().next().find('.host').show();
......@@ -323,7 +323,7 @@ $(function() {
});
}
cloud.confirm=vm_confirm_popup;
cloud.confirm = vm_confirm_popup;
/**
* Manage VM State (STOP)
*/
......@@ -368,8 +368,8 @@ $(function() {
function renew_suspend_vm(id) {
manage_vm(id, "renew/suspend", function(data) {
//workaround for some strange jquery parse error :o
var foo=$('<div />').append(data);
$('#vm-'+id+' .details-container').replaceWith(foo.find('.details-container'));
var foo = $('<div />').append(data);
$('#vm-' + id + ' .details-container').replaceWith(foo.find('.details-container'));
});
}
/**
......@@ -388,7 +388,7 @@ $(function() {
type: 'POST',
url: '/vm/' + state + '/' + id + '/',
success: function(data, b, c) {
if(f) {
if (f) {
f(data);
} else if (state == "resume") {
window.location.href = '/vm/show/' + id + "/";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment