mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-12 01:16:19 +00:00
Remove redundant checks
The info in wgDiscussionToolsFeaturesEnabled already includes a check for user options. Change-Id: I01377e647b1dd5d06b67d1e0c7ee6940f1617066
This commit is contained in:
parent
b0c8621973
commit
d83816f508
|
@ -19,7 +19,7 @@ function ReplyLinksController( $pageContainer ) {
|
|||
|
||||
// "Add topic" link in the skin interface
|
||||
var featuresEnabled = mw.config.get( 'wgDiscussionToolsFeaturesEnabled' ) || {};
|
||||
if ( featuresEnabled.newtopictool && mw.user.options.get( 'discussiontools-newtopictool' ) ) {
|
||||
if ( featuresEnabled.newtopictool ) {
|
||||
// eslint-disable-next-line no-jquery/no-global-selector
|
||||
var $addSectionTab = $( '#ca-addsection' );
|
||||
if ( $addSectionTab.length ) {
|
||||
|
|
|
@ -444,7 +444,7 @@ function init( $container, state ) {
|
|||
}
|
||||
}
|
||||
|
||||
if ( featuresEnabled.topicsubscription && mw.user.options.get( 'discussiontools-topicsubscription' ) ) {
|
||||
if ( featuresEnabled.topicsubscription ) {
|
||||
initTopicSubscriptions( $container );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue