Jump to content

MediaWiki talk:RefToolbarNoDialogs.js

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Hydrox (talk | contribs) at 15:50, 3 April 2014 (Protected edit request on 3 April 2014: add to request). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Use of "$j" is deprecated. Use $ or jQuery instead

Could someone please replace the depracated "$j" by "$" and simplify those "new Array()" to just "[]"? Helder.wiki 16:20, 21 March 2014 (UTC)[reply]

done —TheDJ (talkcontribs) 06:05, 24 March 2014 (UTC)[reply]

Protected edit request on 3 April 2014

On line 294, change:

  insertTags(cite, '', '');

to:

  $("#wpTextbox1").focus();
  insertTags(cite, '', '');

On line 362, change:

  insertTags(ref, '', '');

to:

  $("#wpTextbox1").focus();
  insertTags(ref, '', '');

This fixes an annoying bug with RefToolbar where the citation text gets inserted in the wrong edit field. This fix simply forces the input focus to the main wikitext edit field right before the insertion, which is the expected behaviour of the "Insert citation" tool. See RefToolbar talk. hydrox (talk) 14:38, 3 April 2014 (UTC)[reply]

Also, similar edits need to be done for MediaWiki:RefToolbarLegacy.js. --hydrox (talk) 15:50, 3 April 2014 (UTC)[reply]