Skip to content
Permalink
Browse files

zbMATH -- fix eslint warnings (#1844)

  • Loading branch information...
retorquere authored and adam3smith committed Feb 25, 2019
1 parent 7dcacef commit d928a7156c5b0d90f5abb214db7103aef1cd7375
Showing with 3 additions and 3 deletions.
  1. +3 −3 zbMATH.js
@@ -74,7 +74,7 @@ function scrape(doc, url) {
for (var i=0; i<keywords.length; i++) {
item.tags.push( keywords[i].textContent );
}
var classifications = ZU.xpath(doc, '//div[@class="classification"]//tr')
var classifications = ZU.xpath(doc, '//div[@class="classification"]//tr');
for (var i=0; i<classifications.length; i++) {
item.extra = (item.extra ? item.extra + "\n" : '') + 'MSC2010: ' + ZU.xpathText(classifications[i], './td' , null , " = ");
}
@@ -259,5 +259,5 @@ var testCases = [
"url": "http://zbmath.org/?q=cc:35",
"items": "multiple"
}
]
/** END TEST CASES **/
];
/** END TEST CASES **/

0 comments on commit d928a71

Please sign in to comment.
You can’t perform that action at this time.