GenWiki/EditButtons

aus GenWiki, dem genealogischen Lexikon zum Mitmachen.
Zur Navigation springen Zur Suche springen
  1. Die verschiedenen MW-Versionen bringen unterschiedlich ausführliche Edit-Toolboxen "out of the box" mit!
  2. Die verschiedenen Versionen bringen auch unterschiedliche JavaScript-Objekte mit, vorsichtig bei der Übernahme von JavaScripten aus "moderneren" MW-Versionen
  3. Edit Buttons werden via JavaScript ergänzt, am besten in MediaWiki:Common.js
  4. Einfache Lösung: je extra Button ein Paket:
var button = {
        "imageFile": "images/e/e4/Return_arrow.svg", // image to be shown on the button (may be a full URL too), 22x22 pixels
        "speedTip": "harter Zeilenwechsel", // text shown in a tooltip when hovering the mouse over the button
        "tagOpen": "<br />", // the text to use to mark the beginning of the block
        "tagClose": "",      // the text to use to mark the end of the block (if any)
        "sampleText": ""  // the sample text to place inside the block
};
mwCustomEditButtons.push(button);


(In der Version 1.14.1 gibt es noch Probleme (?), dass das Image gefunden wird?!)

Vgl.: