1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-03 08:38:39 +00:00
This commit is contained in:
Lu Wang 2012-09-22 23:14:19 +08:00
parent 1af7808b3d
commit dce8fd9949

View File

@ -11,7 +11,7 @@
*/
var pdf2htmlEX = (function(){
var obj = {
return {
pages : [],
page_boxes : [],
container : null,
@ -44,6 +44,8 @@ var pdf2htmlEX = (function(){
var _ = this;
$(document).ready(function(){_.init_after_loading_content();});
return this;
},
hide_pages : function() {
@ -84,8 +86,7 @@ var pdf2htmlEX = (function(){
$(this.page_boxes[i]).hide();
}
},
};
obj.init();
return obj;
__last_member__ : 'no comma' /*,*/
}.init();
})();