1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 09:38:40 +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 pdf2htmlEX = (function(){
var obj = { return {
pages : [], pages : [],
page_boxes : [], page_boxes : [],
container : null, container : null,
@ -44,6 +44,8 @@ var pdf2htmlEX = (function(){
var _ = this; var _ = this;
$(document).ready(function(){_.init_after_loading_content();}); $(document).ready(function(){_.init_after_loading_content();});
return this;
}, },
hide_pages : function() { hide_pages : function() {
@ -84,8 +86,7 @@ var pdf2htmlEX = (function(){
$(this.page_boxes[i]).hide(); $(this.page_boxes[i]).hide();
} }
}, },
};
obj.init(); __last_member__ : 'no comma' /*,*/
return obj; }.init();
})(); })();