RTF Scan fixes
- Firefox 46 compatibility
- Stretched progress meters
Partial backport of c5716a395f
This commit is contained in:
parent
c7c271f2c4
commit
e5edd12371
2 changed files with 5 additions and 3 deletions
|
@ -341,7 +341,9 @@ var Zotero_RTFScan = new function() {
|
|||
var m = initialRe.exec(firstName);
|
||||
if(m) {
|
||||
var initials = firstName.replace(/[^A-Z]/g, "");
|
||||
var itemInitials = [name[0].toUpperCase() for each (name in itemCreator.ref.firstName.split(/ +/g))].join("");
|
||||
var itemInitials = itemCreator.firstName.split(/ +/g)
|
||||
.map(name => name[0].toUpperCase())
|
||||
.join("");
|
||||
if(initials != itemInitials) return false;
|
||||
} else {
|
||||
// not all initials; verify that the first name matches
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<wizardpage id="scan-page" label="&zotero.rtfScan.scanPage.label;"
|
||||
onpageshow="Zotero_RTFScan.scanPageShowing()">
|
||||
<description width="700">&zotero.rtfScan.scanPage.description;</description>
|
||||
<progressmeter id="progress-indicator" mode="undetermined" flex="1"/>
|
||||
<progressmeter id="progress-indicator" mode="undetermined"/>
|
||||
</wizardpage>
|
||||
|
||||
<wizardpage id="citations-page" label="&zotero.rtfScan.citationsPage.label;"
|
||||
|
@ -107,7 +107,7 @@
|
|||
<wizardpage id="format-page" label="&zotero.rtfScan.formatPage.label;"
|
||||
onpageshow="Zotero_RTFScan.formatPageShowing()">
|
||||
<description width="700">&zotero.rtfScan.formatPage.description;</description>
|
||||
<progressmeter id="progress-indicator" mode="undetermined" flex="1"/>
|
||||
<progressmeter id="progress-indicator" mode="undetermined"/>
|
||||
</wizardpage>
|
||||
|
||||
<wizardpage id="complete-page" label="&zotero.rtfScan.completePage.label;">
|
||||
|
|
Loading…
Reference in a new issue