1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-03 00:35:40 +00:00

change design of pdf2htmlEX

This commit is contained in:
Lu Wang 2012-09-25 22:40:21 +08:00
parent 0532ad4274
commit f4613582e8
2 changed files with 12 additions and 15 deletions

View File

@ -28,7 +28,7 @@ $css
"""
<script type="text/javascript">
pdf2htmlEX.init('pdf-main');
new pdf2htmlEX('pdf-main');
</script>
<title></title>

View File

@ -91,11 +91,15 @@ var pdf2htmlEX = (function(){
return this.p.height();
}
return {
pages : [],
container : null,
render_timer : null,
var pdf2htmlEX = function(container_id) {
this.container_id = container_id;
this.init_before_loading_content();
var _ = this;
$(function(){_.init_after_loading_content();});
};
$.extend(pdf2htmlEX.prototype, {
/* Constants */
render_timeout : 200,
scale_step : 0.9,
@ -127,15 +131,6 @@ var pdf2htmlEX = (function(){
this.render();
},
init : function(container_id) {
this.container_id = container_id;
this.init_before_loading_content();
var _ = this;
$(function(){_.init_after_loading_content();});
return this;
},
pre_hide_pages : function() {
/* pages might have not been loaded yet, so add a CSS rule */
@ -277,5 +272,7 @@ var pdf2htmlEX = (function(){
},
__last_member__ : 'no comma' /*,*/
};
});
return pdf2htmlEX;
})();