From a600a3d2ced53005c1f1e358fdcabdfd5766a959 Mon Sep 17 00:00:00 2001 From: Vivien Nicolas <21@vingtetun.org> Date: Sat, 2 Jul 2011 06:01:43 +0200 Subject: [PATCH] Fix bustage while merging --- fonts.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fonts.js b/fonts.js index d8b36ecdb..31a5e1fac 100644 --- a/fonts.js +++ b/fonts.js @@ -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; } };