MediaWiki:Gadget-CollabOERate.js

From Sudo Room
Revision as of 00:04, 1 December 2013 by Peteforsyth (talk | contribs) (create gadget)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/*  _____________________________________________________________________________
 * |                                                                             |
 * |                    === WARNING: GLOBAL GADGET FILE ===                      |
 * |                  Changes to this page affect many users.                    |
 * |                  Please discuss changes before editing.                     |
 * |_____________________________________________________________________________|
 *
 * Imported from http://wikieducator.org/MediaWiki:Gadget-CollabOERate as of November 2013
 * This enables realtime collaboration in the edit window, see [[MediaWiki:Gadget-CollabOERate]]
 */
$(function() {
  $.getScript('https://togetherjs.com/togetherjs-min.js', function() {
    $('#p-tb ul').append('<li style="margin-top: 1em;"><button id="collaboerate" onclick="TogetherJS(this); return false;">CollabOERate</button></li>');
    TogetherJSConfig_siteName = 'WikiEducator';
    TogetherJSConfig_toolName = 'CollabOERate';
    TogetherJSConfig_getUserName = function () {return wgUserName;};
  });
});