Difference between revisions of "User:Argent/common.js"

From The Coppermind
Jump to navigation Jump to search
m
m
Line 1: Line 1:
var customizeToolbar = function () {
+
var customizeToolbar = function() {
 
/* Your code goes here */
 
/* Your code goes here */
 
// TODO: Insert gallery button/link
 
// TODO: Insert gallery button/link
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
+
$('#wpTextbox1').wikiEditor('addToToolbar', {
section: 'advanced',
+
section: 'advanced',
group: 'format',
+
group: 'insert',
tools: {
+
tools: {
"comment": {
+
"comment": {
label: 'Comment',
+
label: 'Comment',
type: 'button',
+
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/3/37/Btn_toolbar_commentaire.png',
+
icon: '//upload.wikimedia.org/wikipedia/commons/3/37/Btn_toolbar_commentaire.png',
action: {
+
action: {
type: 'encapsulate',
+
type: 'encapsulate',
options: {
+
options: {
pre: "<!-- ",
+
pre: "<!-- ",
post: " -->"
+
post: " -->"
  +
}
}
 
  +
}
}
 
 
}
}
 
  +
}
}
 
} );
+
});
 
};
 
};
   
  +
/*
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
+
* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar...
if ( [ 'edit', 'submit' ].indexOf( mw.config.get( 'wgAction' ) ) !== -1 ) {
 
  +
* Don't touch below this line!
mw.loader.using( 'user.options' ).then( function () {
 
  +
*/
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
 
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
+
if (['edit', 'submit'].indexOf(mw.config.get('wgAction')) !== -1) {
 
mw.loader.using('user.options').then(function() {
$.when(
 
 
// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
mw.loader.using( 'ext.wikiEditor' ), $.ready
 
  +
if (mw.user.options.get('usebetatoolbar') == 1) {
).then( customizeToolbar );
 
 
$.when(
}
 
 
mw.loader.using('ext.wikiEditor'), $.ready
 
).then(customizeToolbar);
  +
}
 
});
 
});
 
}
 
}

Revision as of 00:18, 1 September 2020

var customizeToolbar = function() {
  /* Your code goes here */
  // TODO: Insert gallery button/link
  $('#wpTextbox1').wikiEditor('addToToolbar', {
    section: 'advanced',
    group: 'insert',
    tools: {
      "comment": {
        label: 'Comment',
        type: 'button',
        icon: '//upload.wikimedia.org/wikipedia/commons/3/37/Btn_toolbar_commentaire.png',
        action: {
          type: 'encapsulate',
          options: {
            pre: "<!-- ",
            post: " -->"
          }
        }
      }
    }
  });
};

/* 
 * Check if view is in edit mode and that the required modules are available. Then, customize the toolbar...
 * Don't touch below this line!
 */
if (['edit', 'submit'].indexOf(mw.config.get('wgAction')) !== -1) {
  mw.loader.using('user.options').then(function() {
    // This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
    if (mw.user.options.get('usebetatoolbar') == 1) {
      $.when(
        mw.loader.using('ext.wikiEditor'), $.ready
      ).then(customizeToolbar);
    }
  });
}