1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Fix bustage while merging

This commit is contained in:
Vivien Nicolas 2011-07-02 06:01:43 +02:00
parent 41d4738289
commit a600a3d2ce

View file

@ -1117,6 +1117,8 @@ var Font = (function () {
var rule = "@font-face { font-family:'" + fontName + "';src:" + url + "}";
var styleSheet = document.styleSheets[0];
styleSheet.insertRule(rule, styleSheet.cssRules.length);
return rule;
}
};