Topic on Extension talk:InputBox

Open created page in new tab. Not in current.

3
Aka sektor (talkcontribs)

How do I get by clicking on the button creation page, go to the new tab and does not remain in the current? What is correct in extension code, if in no other way?

Russian:

Как сделать, чтобы по нажатию на кнопку создания страницы, переходило в новую вкладку, а не оставалась в текущей? Что поправить в коде расширения, если по-другому нельзя?

Ciencia Al Poder (talkcontribs)

Add this JavaScript code to your wiki:

// Create page form: open on new window
$(function(){
  $('form.createbox').attr('target', '_blank');
});
Aka sektor (talkcontribs)

Thank you very much. Work fine.