Update VE core submodule to master (fbbb9c4cb)

New changes:
854a1fa2c Distinguish active link styling

Local changes:
* Pull through active link styling

Bug: T228220
Change-Id: I925f88d32a514a749b96f501a211003bc4c924f0
This commit is contained in:
Ed Sanders 2019-07-22 20:12:35 +01:00 committed by Jforrester
parent 9a1994e47c
commit 32042d76e8
3 changed files with 3 additions and 3 deletions

2
lib/ve

@ -1 +1 @@
Subproject commit 7cb9caca1afe28b34a16106ad30178b7a7c0a7bf
Subproject commit fbbb9c4cb533d9d4c2dac74594d67099427314f4

View file

@ -22,7 +22,7 @@ ve.init.mw.MobileCollabTarget = function VeInitMwMobileCollabTarget( title, reba
ve.init.mw.MobileCollabTarget.super.call( this, title, rebaserUrl, config );
// Initialization
this.$element.addClass( 've-init-mw-mobileArticleTarget ve-init-mw-mobileCollabTarget' );
this.$element.addClass( 've-init-mw-mobileArticleTarget ve-init-mw-mobileCollabTarget ve-init-mobileTarget' );
$( document.body ).removeClass( 'ns-special' );
};

View file

@ -33,7 +33,7 @@ ve.init.mw.MobileArticleTarget = function VeInitMwMobileArticleTarget( overlay,
this.adjustContentPaddingDebounced = OO.ui.debounce( this.adjustContentPadding.bind( this ) );
// Initialization
this.$element.addClass( 've-init-mw-mobileArticleTarget' );
this.$element.addClass( 've-init-mw-mobileArticleTarget ve-init-mobileTarget' );
};
/* Inheritance */