mirror of https://gitee.com/bigwinds/arangodb
removed some local storage functions
This commit is contained in:
parent
ddb6155870
commit
bdbdaaf0bf
|
@ -182,11 +182,6 @@
|
||||||
this.$(this.id).html(this.table.render({content: this.tableDescription}));
|
this.$(this.id).html(this.table.render({content: this.tableDescription}));
|
||||||
// fill select box with # of results
|
// fill select box with # of results
|
||||||
var querySize = 1000;
|
var querySize = 1000;
|
||||||
if (typeof Storage) {
|
|
||||||
if (localStorage.getItem("querySize") > 0) {
|
|
||||||
querySize = parseInt(localStorage.getItem("querySize"), 10);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var sizeBox = $('#querySize');
|
var sizeBox = $('#querySize');
|
||||||
sizeBox.empty();
|
sizeBox.empty();
|
||||||
|
@ -250,13 +245,6 @@
|
||||||
|
|
||||||
$('#aqlEditor .ace_text-input').focus();
|
$('#aqlEditor .ace_text-input').focus();
|
||||||
|
|
||||||
if (typeof Storage) {
|
|
||||||
var queryContent = localStorage.getItem("queryContent");
|
|
||||||
var queryOutput = localStorage.getItem("queryOutput");
|
|
||||||
inputEditor.setValue(queryContent);
|
|
||||||
outputEditor.setValue(queryOutput);
|
|
||||||
}
|
|
||||||
|
|
||||||
var windowHeight = $(window).height() - 295;
|
var windowHeight = $(window).height() - 295;
|
||||||
$('#aqlEditor').height(windowHeight - 19);
|
$('#aqlEditor').height(windowHeight - 19);
|
||||||
$('#queryOutput').height(windowHeight);
|
$('#queryOutput').height(windowHeight);
|
||||||
|
|
Loading…
Reference in New Issue