mirror of https://gitee.com/bigwinds/arangodb
Make sure Show Interface check asks for HTML
This commit is contained in:
parent
ac4eccee02
commit
315b2e15f2
|
@ -262,7 +262,12 @@
|
||||||
self.jsonEditor.setReadOnly(true);
|
self.jsonEditor.setReadOnly(true);
|
||||||
self.jsonEditor.getSession().setMode('ace/mode/json');
|
self.jsonEditor.getSession().setMode('ace/mode/json');
|
||||||
|
|
||||||
$.get(this.appUrl(db)).success(function () {
|
$.ajax({
|
||||||
|
url: this.appUrl(db),
|
||||||
|
headers: {
|
||||||
|
accept: 'text/html,*/*;q=0.9'
|
||||||
|
}
|
||||||
|
}).success(function () {
|
||||||
$('.open', this.el).prop('disabled', false);
|
$('.open', this.el).prop('disabled', false);
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue