Skip to content
Snippets Groups Projects
Commit df7672be authored by Robert Lange's avatar Robert Lange
Browse files

refs #23952 [finc] account badges: remove exclamation mark before element length check

parent 2874ad80
Branches
Tags
No related merge requests found
...@@ -66,7 +66,7 @@ VuFind.register('account', function Account() { ...@@ -66,7 +66,7 @@ VuFind.register('account', function Account() {
continue; continue;
} }
var $element = $(_submodules[sub].selector); var $element = $(_submodules[sub].selector);
if (!$element.length === 0) { if ($element.length === 0) {
// This could happen if the DOM is changed dynamically // This could happen if the DOM is changed dynamically
_statuses[sub] = INACTIVE; _statuses[sub] = INACTIVE;
continue; continue;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment