Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@googlemail.com>2015-02-09 09:52:10 +0300
committerRaimund Schlüßler <raimund.schluessler@googlemail.com>2015-02-09 09:52:10 +0300
commitc398e8e42e5be84285c5e503d42991b36f79ab36 (patch)
treea73f67f3b1d90b6df8d1d1e2e492391c4e0f774e /core/search
parentfcc144ca7472265e0ed7114f6d541c93715a051c (diff)
Fix variable already defined
Diffstat (limited to 'core/search')
-rw-r--r--core/search/js/search.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/search/js/search.js b/core/search/js/search.js
index 599a7c7d5c2..42bdaf88352 100644
--- a/core/search/js/search.js
+++ b/core/search/js/search.js
@@ -366,7 +366,7 @@ $(document).ready(function() {
$('#app-content')
.find('.viewcontainer').css('min-height', 'initial');
} else {
- var $searchResults = $('<div id="searchresults" class="hidden"/>');
+ $searchResults = $('<div id="searchresults" class="hidden"/>');
$('#app-content')
.append($searchResults)
.find('.viewcontainer').css('min-height', 'initial');