Merge "Enable change makers by default"

This commit is contained in:
jenkins-bot 2012-12-11 07:05:48 +00:00 committed by Gerrit Code Review
commit 64abfff53c

View file

@ -64,10 +64,10 @@ ve.init.mw.Platform.prototype.getModulesUrl = function () {
*/
ve.init.mw.Platform.prototype.useChangeMarkers = function () {
var currentUri = new mw.Uri( window.location.toString() );
if ( currentUri && 'vechangemarkers' in currentUri.query ) {
return true;
if ( currentUri && 'venochangemarkers' in currentUri.query ) {
return false;
}
return false;
return true;
};
/**