Fixed typo in elastic angular client, added dash loader panel, removed dashboards.js, replaced with default.json, added global alerts, add some display options for histogram

This commit is contained in:
Rashid Khan
2013-02-15 15:23:04 -07:00
parent d8f2d412cd
commit a956a36c96
19 changed files with 722 additions and 343 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ angular.module('elasticjs.service', [])
},
del: function (path, data, successcb, errorcb) {
path = url + path;
return promiseThen($http.delee(path, data), successcb, errorcb);
return promiseThen($http.delete(path, data), successcb, errorcb);
},
head: function (path, data, successcb, errorcb) {
path = url + path;