PHRAS-1061 #time 2d

- fix : small error in "rightPanel.js"
- remove : obsolete files about phrasea/sphinx engines.
- add : buttons "drop index" / "create index" in admin/es settings
This commit is contained in:
Jean-Yves Gaulier
2016-04-06 18:26:05 +02:00
parent 5753189f0a
commit da4ab636fe
9 changed files with 98 additions and 51 deletions

View File

@@ -73,11 +73,11 @@ define([
event.preventDefault();
var $this = this;
var link = $(event.currentTarget);
var url = link.attr('action') || 'GET';
var url = link.attr('action');
if(url) {
$.ajax({
type: link.attr('method'),
type: link.attr('method') || 'GET',
url: url,
data: link.serializeArray(),
success: function (data) {