On Fri, Aug 14, 2015 at 6:18 AM, Bartosz Dziewoński <[email protected]> wrote:
> On Thu, 13 Aug 2015 03:00:40 +0200, Dan Fisher <[email protected]> > wrote: > > I don't like this feature enabled by default in the latest Mediawiki >> (1.25.2) that shows condensed Recent changes. It requires an extra click >> on >> every group of RC links for each page. >> I don't know why designers don't make changes like this as an option that >> has to be turned on. >> >> So how can this be turned off? >> > > In your use preferences, on the "Recent changes" tab, uncheck "Group > changes by page in recent changes and watchlist". > > If you want to change the default for all users of your wiki, set > $wgDefaultUserOptions['usenewrc'] = false;. > https://www.mediawiki.org/wiki/Manual:$wgDefaultUserOptions > > Or, if you like the extra detail, and just want to avoid all the extra clicks... I've loved the feature ever since adding this code into my [[Special:MyPage/common.js]] // Auto-Expand all grouped RC/Watchlist entries. $(window).load(function() { $('.mw-enhancedchanges-arrow').click(); }); I highly recommend it. I've filed a feature request for making this functionality more easily available, at https://phabricator.wikimedia.org/T109103 -- Quiddity _______________________________________________ MediaWiki-l mailing list To unsubscribe, go to: https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
