Remove esAdmin mention from docs since it no longer exists (#13449) (#13450)

The angular service was removed in #13000
This commit is contained in:
Matt Bargar 2017-08-10 12:33:40 -04:00 committed by GitHub
parent 4a47c03190
commit 6a9a20f9ec

View file

@ -31,9 +31,8 @@ Browser clients are exposed through AngularJS services.
[source,javascript]
----
uiModules.get('kibana')
.run(function (esAdmin, es) {
.run(function (es) {
es.ping()
.then(() => esAdmin.ping())
.catch(err => {
console.log('error pinging servers');
});