Commit e39d1ae78f

ABuffSeagull <reecevanatta@hey.com>
2022-03-15 19:09:38
autodoc: fix missing variable declaration for strict mode
1 parent 40a2844
Changed files (1)
lib
docs
lib/docs/main.js
@@ -1,4 +1,4 @@
-//'use strict';
+'use strict';
 
 (function() {
     var domStatus = document.getElementById("status");
@@ -1543,6 +1543,7 @@
         if (location.hash[0] === '#' && location.hash.length > 1) {
             var query = location.hash.substring(1);
             var qpos = query.indexOf("?");
+            var nonSearchPart;
             if (qpos === -1) {
                 nonSearchPart = query;
             } else {