Update to citeproc-js 1.0.470
This commit is contained in:
parent
1d09c85822
commit
61fba0a788
1 changed files with 4 additions and 1 deletions
|
@ -57,7 +57,7 @@ if (!Array.indexOf) {
|
|||
};
|
||||
}
|
||||
var CSL = {
|
||||
PROCESSOR_VERSION: "1.0.469",
|
||||
PROCESSOR_VERSION: "1.0.470",
|
||||
CONDITION_LEVEL_TOP: 1,
|
||||
CONDITION_LEVEL_BOTTOM: 2,
|
||||
PLAIN_HYPHEN_REGEX: /(?:[^\\]-|\u2013)/,
|
||||
|
@ -3017,6 +3017,9 @@ CSL.Output.Queue.purgeEmptyBlobs = function (myblobs, endOnly) {
|
|||
return;
|
||||
}
|
||||
for (i = myblobs.length - 1; i > -1; i += -1) {
|
||||
if ("undefined" === typeof myblobs[i].blobs) {
|
||||
myblobs[i].blobs = [];
|
||||
}
|
||||
CSL.Output.Queue.purgeEmptyBlobs(myblobs[i].blobs, endOnly);
|
||||
}
|
||||
for (i = myblobs.length - 1; i > -1; i += -1) {
|
||||
|
|
Loading…
Reference in a new issue