1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-03 08:38:39 +00:00

disable dragging on background images

This commit is contained in:
Lu Wang 2013-05-06 19:53:56 +08:00
parent c1104cb00f
commit 7c12b228c2
2 changed files with 4 additions and 1 deletions

View File

@ -152,7 +152,7 @@ var pdf2htmlEX = (function(){
this.container.add(this.outline).on('click', '.'+CSS_CLASS_NAMES['link'], this, this.link_handler);
// disable background image draging
$('.'+CSS_CLASS_NAMES['background_image'], this.container).on('dragstart', function(e){return false;});
$('img', this.container).on('dragstart', function(e){return false;});
this.render();

View File

@ -192,6 +192,9 @@ void HTMLRenderer::startPage(int pageNum, GfxState *state, XRef * xref)
<< " " << CSS::PAGE_CONTENT_BOX_CN << pageNum
<< "\">";
/* an empty div to prevent selection blinks */
f_pages.fs << "<div></div>";
if(param.process_nontext)
{
f_pages.fs << "<img class=\"" << CSS::BACKGROUND_IMAGE_CN