search for: jgrowl

Displaying 4 results from an estimated 4 matches for "jgrowl".

Did you mean: growl
2009 May 26
1
[PATCH server] BUG #478726
Decreased default time notifications display to be 3 seconds. Signed-off-by: Jason Guiditta <jguiditt at redhat.com> --- src/public/javascripts/jquery.jgrowl.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/public/javascripts/jquery.jgrowl.js b/src/public/javascripts/jquery.jgrowl.js index b803de8..1617be2 100644 --- a/src/public/javascripts/jquery.jgrowl.js +++ b/src/public/javascripts/jquery.jgrowl.js @@ -98,7 +98,7 @@...
2009 Aug 18
1
[PATCH server] Add of a button destroy for disabled hosts.
...; + $.post('<%= url_for :controller => "host", :action => "destroy", :id => @host.id %>', + {x: 1}, + function(data,status){ + $("#hosts_grid").flexReload(); + if (data.alert) { + $.jGrowl(data.alert); + } + empty_summary('hosts_selection', 'Host'); + }, 'json'); + } </script> <div id="hosts_selection_id" style="display:none"><%= @host.id %></div> -- 1.6.2.5
2010 Sep 01
1
[PATCH 1/3] Adding the VM Pool migration for vms
...VM Pool") %> +</form> +<script type="text/javascript"> + $(function() { + + $('#change_vmpool_form').ajaxForm({ + dataType: 'json', + success: function(data, status) { + afterVm(data, status); + if (data.alert) { + $.jGrowl(data.alert); + } + } + }); + + }); +</script> diff --git a/src/app/views/vm/show.rhtml b/src/app/views/vm/show.rhtml index e7207aa..3413095 100644 --- a/src/app/views/vm/show.rhtml +++ b/src/app/views/vm/show.rhtml @@ -33,6 +33,9 @@ </a> <% end -%>...
2010 Aug 25
0
[PATCH] Adding the VM Pool migration for vms
...ost(form.attr('action'), { + 'id': $('#vm_id').val(), + 'vm[vm_resource_pool_id]': $('#vm_vm_resource_pool_id').val() + }, + function(data, status) { + $('#vms_grid').flexReload(); + if (data.alert) { + $.jGrowl(data.alert); + } + }, + 'json'); + } +</script> diff --git a/src/app/views/vm/show.rhtml b/src/app/views/vm/show.rhtml index e7207aa..3413095 100644 --- a/src/app/views/vm/show.rhtml +++ b/src/app/views/vm/show.rhtml @@ -33,6 +33,9 @@ </a> <%...