From 1fd745d005bbfe762950df287b1aa6d34dbe0851 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Thu, 31 Oct 2013 19:00:58 +0100 Subject: [PATCH] fixed jslint warnings --- .../system/aardvark/frontend/js/collections/arangoDocuments.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/apps/system/aardvark/frontend/js/collections/arangoDocuments.js b/js/apps/system/aardvark/frontend/js/collections/arangoDocuments.js index 100271f821..f3a2292909 100644 --- a/js/apps/system/aardvark/frontend/js/collections/arangoDocuments.js +++ b/js/apps/system/aardvark/frontend/js/collections/arangoDocuments.js @@ -73,7 +73,8 @@ window.arangoDocuments = Backbone.Collection.extend({ if (this.documentsCount <= sortCount) { //sorted - myQueryVal = "FOR x in @@collection SORT TO_NUMBER(x._key) == 0 ? x._key : TO_NUMBER(x._key) LIMIT @offset, @count RETURN x"; + myQueryVal = "FOR x in @@collection SORT TO_NUMBER(x._key) == 0 ? " + + "x._key : TO_NUMBER(x._key) LIMIT @offset, @count RETURN x"; } else { //not sorted