mirror of https://github.com/xwiki-labs/cryptpad
lint compliance
This commit is contained in:
parent
4e3c0f32cf
commit
d70b0ed037
|
@ -17,7 +17,7 @@ define([
|
|||
category = window.location.hash.slice(1);
|
||||
window.location.hash = '';
|
||||
}
|
||||
var addRpc = function (sframeChan) {
|
||||
var addRpc = function (sframeChan, CryptPad, Utils) {
|
||||
// X2T
|
||||
sframeChan.on('Q_OO_CONVERT', function (obj, cb) {
|
||||
obj.modal = 'x2t';
|
||||
|
|
|
@ -6,10 +6,10 @@ define([
|
|||
'/common/common-interface.js',
|
||||
'/common/common-ui-elements.js',
|
||||
'/common/common-util.js',
|
||||
'/common/common-hash.js',
|
||||
'/common/hyperscript.js',
|
||||
'json.sortify',
|
||||
'/customize/messages.js',
|
||||
//'/common/common-hash.js',
|
||||
//'/common/hyperscript.js',
|
||||
//'json.sortify',
|
||||
//'/customize/messages.js',
|
||||
], function (
|
||||
$,
|
||||
Crypto,
|
||||
|
@ -17,19 +17,19 @@ define([
|
|||
SFCommon,
|
||||
UI,
|
||||
UIElements,
|
||||
Util,
|
||||
Util /*,
|
||||
Hash,
|
||||
h,
|
||||
Sortify,
|
||||
Messages)
|
||||
Messages */)
|
||||
{
|
||||
var APP = window.APP = {};
|
||||
|
||||
var andThen = function (common) {
|
||||
var metadataMgr = common.getMetadataMgr();
|
||||
//var metadataMgr = common.getMetadataMgr();
|
||||
var sframeChan = common.getSframeChannel();
|
||||
var $body = $('body');
|
||||
var displayed;
|
||||
//var $body = $('body');
|
||||
//var displayed;
|
||||
|
||||
var create = {};
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ define([
|
|||
'/api/config',
|
||||
'jquery',
|
||||
'/common/requireconfig.js',
|
||||
'/customize/messages.js',
|
||||
], function (nThen, ApiConfig, $, RequireConfig, Messages) {
|
||||
//'/customize/messages.js',
|
||||
], function (nThen, ApiConfig, $, RequireConfig /*, Messages */) {
|
||||
var requireConfig = RequireConfig();
|
||||
|
||||
var ready = false;
|
||||
|
|
Loading…
Reference in New Issue