Display preview with a single click
parent
89de5869c5
commit
440980c4af
|
@ -1,3 +1,5 @@
|
|||
@import (reference) "./tools.less";
|
||||
|
||||
.markdown_main() {
|
||||
blockquote {
|
||||
background: #e5e5e5;
|
||||
|
@ -95,6 +97,7 @@
|
|||
svg {
|
||||
max-width: 100%;
|
||||
cursor: pointer;
|
||||
.tools_unselectable();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -447,7 +447,9 @@ define([
|
|||
idx = 0;
|
||||
}
|
||||
|
||||
common.getMediaTagPreview(mts, idx);
|
||||
setTimeout(function () {
|
||||
common.getMediaTagPreview(mts, idx);
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -465,10 +467,10 @@ define([
|
|||
contextMenu.show(e);
|
||||
});
|
||||
if ($mt.children().length) {
|
||||
$mt.off('dblclick preview');
|
||||
$mt.off('click dblclick preview');
|
||||
$mt.on('preview', onPreview($mt));
|
||||
if ($mt.find('img').length) {
|
||||
$mt.on('dblclick', function () {
|
||||
$mt.on('click dblclick', function () {
|
||||
$mt.trigger('preview');
|
||||
});
|
||||
}
|
||||
|
@ -485,10 +487,10 @@ define([
|
|||
observer.disconnect();
|
||||
}
|
||||
});
|
||||
$mt.off('dblclick preview');
|
||||
$mt.off('click dblclick preview');
|
||||
$mt.on('preview', onPreview($mt));
|
||||
if ($mt.find('img').length) {
|
||||
$mt.on('dblclick', function () {
|
||||
$mt.on('click dblclick', function () {
|
||||
$mt.trigger('preview');
|
||||
});
|
||||
}
|
||||
|
@ -518,9 +520,9 @@ define([
|
|||
$(contextMenu.menu).find('li:not(.cp-svg)').hide();
|
||||
contextMenu.show(e);
|
||||
});
|
||||
$el.off('dblclick preview');
|
||||
$el.off('dblclick click preview');
|
||||
$el.on('preview', onPreview($el));
|
||||
$el.on('dblclick', function () {
|
||||
$el.on('dblclick click', function () {
|
||||
$el.trigger('preview');
|
||||
});
|
||||
|
||||
|
|
|
@ -256,11 +256,9 @@ define([
|
|||
$inner.append(cfg.svg);
|
||||
if (!cfg.render) {
|
||||
$spinner.hide();
|
||||
console.error('here');
|
||||
locked = false;
|
||||
return;
|
||||
}
|
||||
console.error('there');
|
||||
setTimeout(cfg.render);
|
||||
tag = cfg.svg;
|
||||
} else {
|
||||
|
|
|
@ -1003,6 +1003,7 @@ define([
|
|||
if (typeof(SecureModal.cb) !== "function") { return; }
|
||||
SecureModal.cb(data);
|
||||
};
|
||||
config.onFileUpload = onFileUpload;
|
||||
config.onClose = function () {
|
||||
SecureModal.$iframe.hide();
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue