Browse Source

Fix #313. Repair broken image extension detection regex.

tags/v1.2.0-rc1
Justin 11 years ago
parent
commit
eafa365453
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      public/js/app.js

+ 1
- 1
public/js/app.js View File

@@ -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;
}



Loading…
Cancel
Save