update to citeproc-js 1.0.112
From Frank's release notes: Avoid carrying year-suffix forward to a following reference when performing position-sensitive citation updates.
This commit is contained in:
parent
72240b92d9
commit
95a64b9d5e
1 changed files with 3 additions and 2 deletions
|
@ -1732,7 +1732,7 @@ CSL.DateParser = function (txt) {
|
||||||
};
|
};
|
||||||
CSL.Engine = function (sys, style, lang, forceLang) {
|
CSL.Engine = function (sys, style, lang, forceLang) {
|
||||||
var attrs, langspec, localexml, locale;
|
var attrs, langspec, localexml, locale;
|
||||||
this.processor_version = "1.0.111";
|
this.processor_version = "1.0.112";
|
||||||
this.csl_version = "1.0";
|
this.csl_version = "1.0";
|
||||||
this.sys = sys;
|
this.sys = sys;
|
||||||
this.sys.xml = new CSL.System.Xml.Parsing();
|
this.sys.xml = new CSL.System.Xml.Parsing();
|
||||||
|
@ -3167,7 +3167,8 @@ CSL.citeEnd = function (Item) {
|
||||||
this.tmp.last_names_used = this.tmp.names_used.slice();
|
this.tmp.last_names_used = this.tmp.names_used.slice();
|
||||||
this.tmp.cut_var = false;
|
this.tmp.cut_var = false;
|
||||||
if (this.tmp.disambig_restore && this.registry.registry[Item.id]) {
|
if (this.tmp.disambig_restore && this.registry.registry[Item.id]) {
|
||||||
this.registry.registry[Item.id].disambig = this.tmp.disambig_restore;
|
this.registry.registry[Item.id].disambig.names = this.tmp.disambig_restore.names;
|
||||||
|
this.registry.registry[Item.id].disambig.givens = this.tmp.disambig_restore.givens;
|
||||||
}
|
}
|
||||||
this.tmp.disambig_request = false;
|
this.tmp.disambig_request = false;
|
||||||
if (!this.tmp.suppress_decorations && this.tmp.offset_characters) {
|
if (!this.tmp.suppress_decorations && this.tmp.offset_characters) {
|
||||||
|
|
Loading…
Reference in a new issue