Get rid of last usages of cryptpad-common in pad/inner
This commit is contained in:
parent
12e82e80ec
commit
7230c780a1
@ -28,7 +28,8 @@ define([
|
|||||||
'/bower_components/nthen/index.js',
|
'/bower_components/nthen/index.js',
|
||||||
'/common/media-tag.js',
|
'/common/media-tag.js',
|
||||||
'/api/config',
|
'/api/config',
|
||||||
'/common/cryptpad-common.js',
|
'/common/common-hash.js',
|
||||||
|
'/common/common-util.js',
|
||||||
|
|
||||||
'/bower_components/diff-dom/diffDOM.js',
|
'/bower_components/diff-dom/diffDOM.js',
|
||||||
|
|
||||||
@ -46,7 +47,8 @@ define([
|
|||||||
nThen,
|
nThen,
|
||||||
MediaTag,
|
MediaTag,
|
||||||
ApiConfig,
|
ApiConfig,
|
||||||
Cryptpad)
|
Hash,
|
||||||
|
Util)
|
||||||
{
|
{
|
||||||
var DiffDom = window.diffDOM;
|
var DiffDom = window.diffDOM;
|
||||||
|
|
||||||
@ -406,11 +408,7 @@ define([
|
|||||||
|
|
||||||
// apply patches, and try not to lose the cursor in the process!
|
// apply patches, and try not to lose the cursor in the process!
|
||||||
framework.onContentUpdate(function (hjson) {
|
framework.onContentUpdate(function (hjson) {
|
||||||
if (!Array.isArray(hjson)) {
|
if (!Array.isArray(hjson)) { throw new Error(Messages.typeError); }
|
||||||
var errorText = Messages.typeError;
|
|
||||||
Cryptpad.errorLoadingScreen(errorText);
|
|
||||||
throw new Error(errorText);
|
|
||||||
}
|
|
||||||
var userDocStateDom = hjsonToDom(hjson);
|
var userDocStateDom = hjsonToDom(hjson);
|
||||||
|
|
||||||
userDocStateDom.setAttribute("contenteditable",
|
userDocStateDom.setAttribute("contenteditable",
|
||||||
@ -458,8 +456,8 @@ define([
|
|||||||
ckeditor: editor,
|
ckeditor: editor,
|
||||||
body: $('body'),
|
body: $('body'),
|
||||||
onUploaded: function (ev, data) {
|
onUploaded: function (ev, data) {
|
||||||
var parsed = Cryptpad.parsePadUrl(data.url);
|
var parsed = Hash.parsePadUrl(data.url);
|
||||||
var hexFileName = Cryptpad.base64ToHex(parsed.hashData.channel);
|
var hexFileName = Util.base64ToHex(parsed.hashData.channel);
|
||||||
var src = '/blob/' + hexFileName.slice(0,2) + '/' + hexFileName;
|
var src = '/blob/' + hexFileName.slice(0,2) + '/' + hexFileName;
|
||||||
var mt = '<media-tag contenteditable="false" src="' + src + '" data-crypto-key="cryptpad:' + parsed.hashData.key + '" tabindex="1"></media-tag>';
|
var mt = '<media-tag contenteditable="false" src="' + src + '" data-crypto-key="cryptpad:' + parsed.hashData.key + '" tabindex="1"></media-tag>';
|
||||||
editor.insertElement(window.CKEDITOR.dom.element.createFromHtml(mt));
|
editor.insertElement(window.CKEDITOR.dom.element.createFromHtml(mt));
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user