summaryrefslogtreecommitdiff
path: root/openstack_dashboard/static
diff options
context:
space:
mode:
authormanchandavishal <manchandavishal143@gmail.com>2023-04-11 23:26:46 +0530
committermanchandavishal <manchandavishal143@gmail.com>2023-04-12 22:16:53 +0530
commit6b0aa201798cb0a893d1b9a1bcc1fa465f8b340f (patch)
tree3a2a0b52a02abf95a298ba286426fc32a963eff4 /openstack_dashboard/static
parent7d44796eca10fa61d4d98ab98358c5932746734e (diff)
downloadhorizon-6b0aa201798cb0a893d1b9a1bcc1fa465f8b340f.tar.gz
Update jQuery click event to remove deprecation warning
The shorthand jQuery.fn.click() event has been deprecated in favor of the on() method. This patch updates the code to use the on() method instead to remove the deprecation warning. For more information about the deprecation of jQuery.fn.click(), please refer [1]. [1] https://api.jquery.com/click/ Change-Id: Ic44aaded8d0aaa70e38e46d4121dc3c825f3b831
Diffstat (limited to 'openstack_dashboard/static')
-rw-r--r--openstack_dashboard/static/js/horizon.flatnetworktopology.js14
-rw-r--r--openstack_dashboard/static/js/horizon.networktopology.js10
2 files changed, 12 insertions, 12 deletions
diff --git a/openstack_dashboard/static/js/horizon.flatnetworktopology.js b/openstack_dashboard/static/js/horizon.flatnetworktopology.js
index 944b6f4f1..5e9b50f29 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);
@@ -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');
diff --git a/openstack_dashboard/static/js/horizon.networktopology.js b/openstack_dashboard/static/js/horizon.networktopology.js
index c94da2953..02cba863d 100644
--- a/openstack_dashboard/static/js/horizon.networktopology.js
+++ b/openstack_dashboard/static/js/horizon.networktopology.js
@@ -142,7 +142,7 @@ horizon.network_topology = {
self.refresh_labels();
});
- angular.element('#center_topology').click(function() {
+ angular.element('#center_topology').on('click', function() {
this.blur(); // remove btn focus after click
self.delete_balloon();
// move visualization to the center and reset scale
@@ -1101,19 +1101,19 @@ horizon.network_topology = {
})
.addClass('leftPosition');
}
- _balloon.find('.delete-device').click(function() {
+ _balloon.find('.delete-device').on('click', function() {
var _this = angular.element(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'));
});
});
- _balloon.find('.delete-port').click(function() {
+ _balloon.find('.delete-port').on('click', function() {
var _this = angular.element(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'));
});