Commit 7f856315 by Bence Dányi

webui: fix js format

parent deba7118
...@@ -17,9 +17,9 @@ $(function() { ...@@ -17,9 +17,9 @@ $(function() {
$('a[href=#]').click(function(e) { $('a[href=#]').click(function(e) {
e.preventDefault(); e.preventDefault();
}); });
$('.host-toggle').click(function(e){ $('.host-toggle').click(function(e) {
e.preventDefault(); e.preventDefault();
if($(this).find('.v4').is(':hidden')){ if ($(this).find('.v4').is(':hidden')) {
$(this).find('.v4').show(); $(this).find('.v4').show();
$(this).find('.v6').hide(); $(this).find('.v6').hide();
$(this).parent().next().find('.host').show(); $(this).parent().next().find('.host').show();
...@@ -84,20 +84,20 @@ $(function() { ...@@ -84,20 +84,20 @@ $(function() {
var handler = arguments.callee; var handler = arguments.callee;
var oldName = $(this).data('name'); var oldName = $(this).data('name');
var content = $('#vm-' + id + '-name').html(); var content = $('#vm-' + id + '-name').html();
var self=this; var self = this;
var url = $(this).data('url'); var url = $(this).data('url');
$('#vm-'+id).addClass('editing'); $('#vm-' + id).addClass('editing');
$(this).unbind('click').click(function(e){ $(this).unbind('click').click(function(e) {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
$(this).unbind('click').click(handler); $(this).unbind('click').click(handler);
$('#vm-' + id + '-name-details').show(); $('#vm-' + id + '-name-details').show();
$('#vm-' + id + '-name').html(content); $('#vm-' + id + '-name').html(content);
$('#vm-'+id).removeClass('editing'); $('#vm-' + id).removeClass('editing');
}) })
$('#vm-' + id + '-name-details').hide(); $('#vm-' + id + '-name-details').hide();
$('#vm-' + id + '-name').html('<input type="text" value="' + oldName + '" />\ $('#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) { $('#vm-' + id + '-name').find('input[type="text"]').click(function(f) {
f.preventDefault(); f.preventDefault();
f.stopPropagation(); f.stopPropagation();
...@@ -116,7 +116,7 @@ $(function() { ...@@ -116,7 +116,7 @@ $(function() {
$('#vm-' + id + '-name').text(data.name); $('#vm-' + id + '-name').text(data.name);
$(self).click(handler); $(self).click(handler);
$(self).data('name', newName); $(self).data('name', newName);
$('#vm-'+id).removeClass('editing'); $('#vm-' + id).removeClass('editing');
} }
}); });
}) })
...@@ -167,14 +167,14 @@ $(function() { ...@@ -167,14 +167,14 @@ $(function() {
}) })
$('#modal').show(); $('#modal').show();
}); });
$('.edit-template').click(function(e){ $('.edit-template').click(function(e) {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
var id=$(this).data('id'); var id = $(this).data('id');
$.ajax({ $.ajax({
type: 'GET', type: 'GET',
url: $(this).data('url'), url: $(this).data('url'),
success: function(data){ success: function(data) {
$('#modal').show(); $('#modal').show();
$('#modal-container').html(data); $('#modal-container').html(data);
} }
...@@ -281,9 +281,9 @@ $(function() { ...@@ -281,9 +281,9 @@ $(function() {
function get_vm_details(id) { function get_vm_details(id) {
$.get('/vm/credentials/' + id, function(data) { $.get('/vm/credentials/' + id, function(data) {
$('#modal-container').html(data); $('#modal-container').html(data);
$('#modal-container .host-toggle').click(function(e){ $('#modal-container .host-toggle').click(function(e) {
e.preventDefault(); e.preventDefault();
if($(this).find('.v4').is(':hidden')){ if ($(this).find('.v4').is(':hidden')) {
$(this).find('.v4').show(); $(this).find('.v4').show();
$(this).find('.v6').hide(); $(this).find('.v6').hide();
$(this).parent().next().find('.host').show(); $(this).parent().next().find('.host').show();
...@@ -323,7 +323,7 @@ $(function() { ...@@ -323,7 +323,7 @@ $(function() {
}); });
} }
cloud.confirm=vm_confirm_popup; cloud.confirm = vm_confirm_popup;
/** /**
* Manage VM State (STOP) * Manage VM State (STOP)
*/ */
...@@ -368,8 +368,8 @@ $(function() { ...@@ -368,8 +368,8 @@ $(function() {
function renew_suspend_vm(id) { function renew_suspend_vm(id) {
manage_vm(id, "renew/suspend", function(data) { manage_vm(id, "renew/suspend", function(data) {
//workaround for some strange jquery parse error :o //workaround for some strange jquery parse error :o
var foo=$('<div />').append(data); var foo = $('<div />').append(data);
$('#vm-'+id+' .details-container').replaceWith(foo.find('.details-container')); $('#vm-' + id + ' .details-container').replaceWith(foo.find('.details-container'));
}); });
} }
/** /**
...@@ -388,7 +388,7 @@ $(function() { ...@@ -388,7 +388,7 @@ $(function() {
type: 'POST', type: 'POST',
url: '/vm/' + state + '/' + id + '/', url: '/vm/' + state + '/' + id + '/',
success: function(data, b, c) { success: function(data, b, c) {
if(f) { if (f) {
f(data); f(data);
} else if (state == "resume") { } else if (state == "resume") {
window.location.href = '/vm/show/' + id + "/"; 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