1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-02 16:25:41 +00:00

fix .data()

This commit is contained in:
Lu Wang 2013-06-13 23:08:47 +08:00
parent 3b3efb6845
commit b71efb7f4e

View File

@ -63,7 +63,7 @@ var pdf2htmlEX = (function(){
*/
this.default_r = this.set_r = this.cur_r = this.$p.height() / this.$b.height();
this.data = JSON.parse($($('.'+CSS_CLASS_NAMES['page_data'], this.$p)[0]).data('data'));
this.data = $($('.'+CSS_CLASS_NAMES['page_data'], this.$p)[0]).data('data');
this.ctm = this.data.ctm;
this.ictm = invert(this.ctm);