We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc99ace commit 2c51116Copy full SHA for 2c51116
chrome/content/scripts/ui.js
@@ -57,9 +57,9 @@ Zotero.Jasminum.UI = new function () {
57
var filename = item.getFilename();
58
// Find Chinese characters in string
59
if (escape(filename).indexOf("%u") < 0) return false;
60
- // Extension should be CAJ or PDF
61
- var ext = filename.substr(filename.length - 3, 3);
62
- if (ext != "pdf" && ext != "caj") return false;
+ // Extension should be CAJ , PDF, kdh, nh
+ var ext = filename.match(/\.(\w+)$/, filename)[1];
+ if (!['pdf', 'caj', 'kdh', 'nh'].includes(ext)) return;
63
return true;
64
}.bind(Zotero.Jasminum);
65
0 commit comments