mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-26 10:26:15 -04:00

* jQuery: Migrate to `.on()`, `.off()`, `.trigger()` This avoids methods that are deprecated in newer versions of jQuery. * jQuery: avoid `.removeAttr`, prefer `.prop` * helper.edit: wait up to 10 seconds for ACCEPT_COMMIT * Chat: disabled attribute is boolean * Chat: avoid inline onclick handler to support jQuery 3.4+ * jQuery: update to version 3.6.0 * Update to 3.7 * Removed deprecated event. * Revert change to focus on padeditor.ace --------- Co-authored-by: webzwo0i <webzwo0i@c3d2.de>
7 lines
256 B
JavaScript
7 lines
256 B
JavaScript
'use strict';
|
|
|
|
window.customStart = () => {
|
|
$('#pad_title').show();
|
|
$('.buttonicon').on('mousedown', function () { $(this).parent().addClass('pressed'); });
|
|
$('.buttonicon').on('mouseup', function () { $(this).parent().removeClass('pressed'); });
|
|
};
|