mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
Follow-up 9b582485
: implement back compat for timeStamp correctly
timeStamp was used in two places, but we only had back-compat code in one, so the other ended up using NaN. Bonus: make jshint happy with the indentation of the $.extend() call. Change-Id: I69000d11822658f2a227f9756093bc278f5fbaf5
This commit is contained in:
parent
14b098546a
commit
14a4a4ae1e
|
@ -64,7 +64,8 @@
|
||||||
var action = topic.split( '.' )[1],
|
var action = topic.split( '.' )[1],
|
||||||
event;
|
event;
|
||||||
|
|
||||||
timing[action] = timeStamp || this.timeStamp; // I8e82acc12 back-compat
|
timeStamp = timeStamp || this.timeStamp; // I8e82acc12 back-compat
|
||||||
|
timing[action] = timeStamp;
|
||||||
|
|
||||||
if ( action === 'init' ) {
|
if ( action === 'init' ) {
|
||||||
// Regenerate editingSessionId
|
// Regenerate editingSessionId
|
||||||
|
|
Loading…
Reference in a new issue