mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
undo-xpopup seems to be unused
This commit is contained in:
parent
f809b0d6c8
commit
23bbe4ab5a
4 changed files with 0 additions and 38 deletions
|
@ -6,7 +6,6 @@
|
||||||
, "pad.js"
|
, "pad.js"
|
||||||
, "ace2_common.js"
|
, "ace2_common.js"
|
||||||
, "pad_utils.js"
|
, "pad_utils.js"
|
||||||
, "undo-xpopup.js"
|
|
||||||
, "json2.js"
|
, "json2.js"
|
||||||
, "pad_cookie.js"
|
, "pad_cookie.js"
|
||||||
, "pad_editor.js"
|
, "pad_editor.js"
|
||||||
|
@ -27,7 +26,6 @@
|
||||||
"jquery.js"
|
"jquery.js"
|
||||||
, "underscore.js"
|
, "underscore.js"
|
||||||
, "security.js"
|
, "security.js"
|
||||||
, "undo-xpopup.js"
|
|
||||||
, "json2.js"
|
, "json2.js"
|
||||||
, "colorutils.js"
|
, "colorutils.js"
|
||||||
, "draggable.js"
|
, "draggable.js"
|
||||||
|
|
|
@ -30,7 +30,6 @@ require('./jquery');
|
||||||
require('./farbtastic');
|
require('./farbtastic');
|
||||||
require('./excanvas');
|
require('./excanvas');
|
||||||
JSON = require('./json2');
|
JSON = require('./json2');
|
||||||
require('./undo-xpopup');
|
|
||||||
|
|
||||||
var chat = require('./chat').chat;
|
var chat = require('./chat').chat;
|
||||||
var getCollabClient = require('./collab_client').getCollabClient;
|
var getCollabClient = require('./collab_client').getCollabClient;
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
// assigns to the global `$` and augments it with plugins.
|
// assigns to the global `$` and augments it with plugins.
|
||||||
require('./jquery');
|
require('./jquery');
|
||||||
JSON = require('./json2');
|
JSON = require('./json2');
|
||||||
require('./undo-xpopup');
|
|
||||||
|
|
||||||
var createCookie = require('./pad_utils').createCookie;
|
var createCookie = require('./pad_utils').createCookie;
|
||||||
var readCookie = require('./pad_utils').readCookie;
|
var readCookie = require('./pad_utils').readCookie;
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
/**
|
|
||||||
* This code is mostly from the old Etherpad. Please help us to comment this code.
|
|
||||||
* This helps other people to understand this code better and helps them to improve it.
|
|
||||||
* TL;DR COMMENTS ON THIS FILE ARE HIGHLY APPRECIATED
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Copyright 2009 Google Inc.
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS-IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (window._orig_windowOpen)
|
|
||||||
{
|
|
||||||
window.open = _orig_windowOpen;
|
|
||||||
}
|
|
||||||
if (window._orig_windowSetTimeout)
|
|
||||||
{
|
|
||||||
window.setTimeout = _orig_windowSetTimeout;
|
|
||||||
}
|
|
||||||
if (window._orig_windowSetInterval)
|
|
||||||
{
|
|
||||||
window.setInterval = _orig_windowSetInterval;
|
|
||||||
}
|
|
Loading…
Reference in a new issue