We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f99ad commit bb33d11Copy full SHA for bb33d11
‎js/core.js
@@ -238,7 +238,7 @@ proto.updateGetPathTemplate = function( optPath ) {
238
var match = location.href.match( templateRe );
239
if ( match ) {
240
this.pageIndex = parseInt( match[1], 10 );
241
- this.log( 'pageIndex', this.pageIndex, 'template string' );
+ this.log( 'pageIndex', [ this.pageIndex, 'template string' ] );
242
}
243
};
244
‎js/page-load.js
@@ -255,7 +255,7 @@ proto.getPrefillDistance = function() {
255
256
257
proto.stopPrefill = function() {
258
- console.log('stopping prefill');
+ this.log('stopPrefill');
259
this.off( 'append', this.prefill );
260
261
0 commit comments