Merge pull request #894 from Lucas-C/bug893
Fixing "Uncaught TypeError" in shaarli.js - fix #893
This commit is contained in:
commit
88535f20a9
1 changed files with 3 additions and 2 deletions
|
@ -418,7 +418,8 @@ window.onload = function () {
|
|||
*
|
||||
* TODO: support error code in the backend for AJAX requests
|
||||
*/
|
||||
var existingTags = document.querySelector('input[name="taglist"]').value.split(' ');
|
||||
var tagList = document.querySelector('input[name="taglist"]');
|
||||
var existingTags = tagList ? tagList.value.split(' ') : [];
|
||||
var awesomepletes = [];
|
||||
|
||||
// Display/Hide rename form
|
||||
|
@ -515,7 +516,7 @@ window.onload = function () {
|
|||
});
|
||||
});
|
||||
|
||||
updateAwesompleteList('.rename-tag-input', document.querySelector('input[name="taglist"]').value.split(' '), awesomepletes);
|
||||
updateAwesompleteList('.rename-tag-input', existingTags, awesomepletes);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue