Browse Source

Merge pull request #477 from arturadib/sanity-checks

Sanity checks
Chris Jones 14 years ago
parent
commit
3006c090ad
  1. 4
      fonts.js
  2. 2
      pdf.js

4
fonts.js

@ -1291,6 +1291,10 @@ var Font = (function Font() { @@ -1291,6 +1291,10 @@ var Font = (function Font() {
window.btoa(data) + ');');
var rule = "@font-face { font-family:'" + fontName + "';src:" + url + '}';
var styleSheet = document.styleSheets[0];
if (!styleSheet) {
document.documentElement.firstChild.appendChild( document.createElement('style') );
styleSheet = document.styleSheets[0];
}
styleSheet.insertRule(rule, styleSheet.cssRules.length);
return rule;

2
pdf.js

@ -3379,7 +3379,7 @@ var Page = (function() { @@ -3379,7 +3379,7 @@ var Page = (function() {
} catch (e) {
exc = e.toString();
}
continuation(exc);
if (continuation) continuation(exc);
});
};

Loading…
Cancel
Save