moved all global variables into glob object

This commit is contained in:
azivner
2017-11-04 00:05:08 -04:00
parent 3892666961
commit 44cfff09d9
13 changed files with 79 additions and 79 deletions

View File

@@ -17,7 +17,7 @@ $(document).bind('keydown', 'alt+l', () => {
}
$("#note-autocomplete").autocomplete({
source: getAutocompleteItems(globalAllNoteIds),
source: getAutocompleteItems(glob.allNoteIds),
minLength: 0,
change: () => {
const val = $("#note-autocomplete").val();