Fix a typo, in the Catalog.numPages
getter, than prevents shadowing from working correctly
Looking at the blame, it seems that this typo was present even before PR 700 (almost six years ago). The result of using `'num'`, rather than the *correct* `'numPages'` string, is that the `Catalog.numPages` getter isn't actually being shadowed.
This commit is contained in:
parent
4a74cc418c
commit
15f0963f51
@ -168,7 +168,7 @@ var Catalog = (function CatalogClosure() {
|
||||
'page count in top level pages object is not an integer'
|
||||
);
|
||||
// shadow the prototype getter
|
||||
return shadow(this, 'num', obj);
|
||||
return shadow(this, 'numPages', obj);
|
||||
},
|
||||
get destinations() {
|
||||
function fetchDestination(dest) {
|
||||
|
Loading…
Reference in New Issue
Block a user