Difference between revisions of "MediaWiki:Gadget-CollabOERate.js"

From Sudo Room
Jump to navigation Jump to search
(create gadget)
 
(localize!)
 
Line 12: Line 12:
   $.getScript('https://togetherjs.com/togetherjs-min.js', 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>');
     $('#p-tb ul').append('<li style="margin-top: 1em;"><button id="collaboerate" onclick="TogetherJS(this); return false;">CollabOERate</button></li>');
     TogetherJSConfig_siteName = 'WikiEducator';
     TogetherJSConfig_siteName = 'Sudo Room';
     TogetherJSConfig_toolName = 'CollabOERate';
     TogetherJSConfig_toolName = 'CollabOERate';
     TogetherJSConfig_getUserName = function () {return wgUserName;};
     TogetherJSConfig_getUserName = function () {return wgUserName;};
   });
   });
});
});

Latest revision as of 11:29, 1 December 2013

/*  _____________________________________________________________________________
 * |                                                                             |
 * |                    === 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 = 'Sudo Room';
    TogetherJSConfig_toolName = 'CollabOERate';
    TogetherJSConfig_getUserName = function () {return wgUserName;};
  });
});