1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-02 16:25:41 +00:00
This commit is contained in:
Lu Wang 2013-11-05 18:59:15 +08:00
parent 82822c1879
commit e11195e8f4
2 changed files with 3 additions and 8 deletions

View File

@ -50,13 +50,13 @@ $css
# entry point of pdf2htmlEX.Viewer
# You can override default configuration by passing an object to the constructor of Viewer
# Refer to DEFAULT_CONFIG in viewer.js for possible keys
# E.g.
# new pdf2htmlEX.Viewer({ 'preload_pages' : 1 });
@pdf2htmlEX.min.js
"""
<script>
try{
pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer();
pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer({
'register_key_handler' : false
});
}catch(e){}
</script>
"""

View File

@ -186,11 +186,6 @@
// for a lot of times(= #pages), just hope JIT works
var rect_c = this.$container[0].getBoundingClientRect();
return [rect_c.left-rect.left, rect_c.top-rect.top];
/*
var off = this.$p.offset();
var off_c = this.$container.offset();
return [off_c.left-off.left, off_c.top-off.top];
*/
}
});