summaryrefslogtreecommitdiff
path: root/openstack_dashboard/static/js/horizon.flatnetworktopology.js
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/static/js/horizon.flatnetworktopology.js')
-rw-r--r--openstack_dashboard/static/js/horizon.flatnetworktopology.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/openstack_dashboard/static/js/horizon.flatnetworktopology.js b/openstack_dashboard/static/js/horizon.flatnetworktopology.js
index 944b6f4f1..9bb271d1d 100644
--- a/openstack_dashboard/static/js/horizon.flatnetworktopology.js
+++ b/openstack_dashboard/static/js/horizon.flatnetworktopology.js
@@ -105,12 +105,12 @@ horizon.flat_network_topology = {
e.stopImmediatePropagation();
var vnc_window = window.open($(this).attr('href'), vnc_window, 'width=760,height=560');
self.delete_balloon();
- })
- .click(function(){
+ });
+ $(document).on('click', function(){
self.delete_balloon();
});
- $('.toggle-view > .btn').click(function(){
+ $('.toggle-view > .btn').on('click', function(){
self.draw_mode = $(this).data('value');
$('g.network').remove();
horizon.cookies.put('ntp_draw_mode',self.draw_mode);
@@ -382,7 +382,7 @@ horizon.flat_network_topology = {
this._portdata.port_margin = d.port_margin;
this._portdata.left = 0;
this._portdata.right = 0;
- $(this).mouseenter(function(e){
+ $(this).on('mouseenter', function(e){
e.stopPropagation();
});
});
@@ -621,20 +621,20 @@ horizon.flat_network_topology = {
'left': x + 'px'
}).show();
- $balloon.find('.delete-device').click(function(){
+ $balloon.find('.delete-device').on('click', function(){
var $this = $(this);
var delete_modal = horizon.datatables.confirm($this);
- delete_modal.find('.btn.btn-danger').click(function () {
+ delete_modal.find('.btn.btn-danger').on('click', function () {
$this.prop('disabled', true);
d3.select('#id_' + $this.data('device-id')).classed('loading',true);
self.delete_device($this.data('type'),$this.data('device-id'));
horizon.modals.spinner.modal('hide');
});
});
- $balloon.find('.delete-port').click(function(){
+ $balloon.find('.delete-port').on('click', function(){
var $this = $(this);
var delete_modal = horizon.datatables.confirm($this);
- delete_modal.find('.btn.btn-danger').click(function () {
+ delete_modal.find('.btn.btn-danger').on('click', function () {
$this.prop('disabled', true);
self.delete_port($this.data('router-id'),$this.data('port-id'),$this.data('network-id'));
horizon.modals.spinner.modal('hide');