Diferencia entre revisiones de «Usuario:Argent/common.js»

De La Coppermind
Ir a la navegación Ir a la búsqueda
m
m
Línea 17: Línea 17:
 
type: 'encapsulate',
 
type: 'encapsulate',
 
options: {
 
options: {
pre: "<br style="clear:right;\"",
+
pre: "<br style=\"clear:right;\"",
 
post: "\"/>"
 
post: "\"/>"
 
}
 
}
Línea 23: Línea 23:
 
}
 
}
 
}
 
}
}); //
+
}); // br
   
 
}; // customizeToolbar
 
}; // customizeToolbar

Revisión del 18:10 6 sep 2021

// Main page: https://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization
// - Library: https://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_customization/Library
// - Icons:   https://www.mediawiki.org/wiki/Extension:WikiEditor/Toolbar_icons

var customizeToolbar = function() {
  // add a <br/> button that clears right-aligned items
  // <br style="clear:right;"/>
    $('#wpTextbox1').wikiEditor('addToToolbar', {
    section: 'main',
    group: 'insert',
    tools: {
      "category": {
        label: 'br',
        type: 'button',
        icon: '//upload.wikimedia.org/wikipedia/commons/1/13/Button_enter.png',
        action: {
          type: 'encapsulate',
          options: {
            pre:  "<br style=\"clear:right;\"",
            post: "\"/>"
          }
        }
      }
    }
  }); // br

}; // customizeToolbar 

/* 
 * 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);
    }
  });
}