mirror of https://gitee.com/bigwinds/arangodb
Bug fix/internal issue 1983 (#6746)
This commit is contained in:
parent
e78d1aa541
commit
24c6a7037a
|
@ -1,6 +1,9 @@
|
||||||
devel
|
devel
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
* fixed internal issue #1983: the Web UI was showing a deletion confirmation
|
||||||
|
multiple times.
|
||||||
|
|
||||||
* removed bundled Valgrind headers, removed JavaScript variable `valgrind`
|
* removed bundled Valgrind headers, removed JavaScript variable `valgrind`
|
||||||
from the `internal` module
|
from the `internal` module
|
||||||
|
|
||||||
|
|
|
@ -217,9 +217,11 @@
|
||||||
prepDeleteIndex: function (e) {
|
prepDeleteIndex: function (e) {
|
||||||
var self = this;
|
var self = this;
|
||||||
this.lastTarget = e;
|
this.lastTarget = e;
|
||||||
|
|
||||||
this.lastId = $(this.lastTarget.currentTarget).parent().parent().first().children().first().text();
|
this.lastId = $(this.lastTarget.currentTarget).parent().parent().first().children().first().text();
|
||||||
// window.modalView.hide()
|
|
||||||
|
if ($('#indexDeleteModal').length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// delete modal
|
// delete modal
|
||||||
$('#content #modal-dialog .modal-footer').after(
|
$('#content #modal-dialog .modal-footer').after(
|
||||||
|
|
Loading…
Reference in New Issue