Эх сурвалжийг харах

Fix #313. Repair broken image extension detection regex.

Justin 10 жил өмнө
parent
commit
eafa365453
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      public/js/app.js

+ 1 - 1
public/js/app.js

@@ -536,7 +536,7 @@ function initIssue() {
         var over = function() {
             var $this = $(this);
 
-            if ($this.text().match(/\.(png|jpg|jpeg|gif)$/i) == false) {
+            if ((/\.(png|jpg|jpeg|gif)$/i).test($this.text()) == false) {
                 return;
             }