소스 검색

Fix error when path has only numeric chars

Norio Suzuki 10 년 전
부모
커밋
c9e1104d33
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      resource/js/crowi.js

+ 1 - 1
resource/js/crowi.js

@@ -320,7 +320,7 @@ $(function() {
     var shortPath = $link.data('short-path');
 
     var escape = function(s) {
-      return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
+      return (s + '').replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
     };
     var pattern = escape(shortPath) + '(/)?$';