diff options
author | Kris Maglione <maglione.k@gmail.com> | 2010-11-05 22:04:45 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2010-11-05 22:04:45 -0400 |
commit | f468e466f41a49a220b7b99fbeda1deeee475290 (patch) | |
tree | 12882533046b4e16067e33323645061ab3aa6ac5 /common/content/io.js | |
parent | 571828f179cdd2846d3f315e9ef4944448bfd7b2 (diff) | |
download | pentadactyl-f468e466f41a49a220b7b99fbeda1deeee475290.tar.gz |
Fix :source *.css
Diffstat (limited to 'common/content/io.js')
-rw-r--r-- | common/content/io.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/io.js b/common/content/io.js index 81860cc7..2e1c30f9 100644 --- a/common/content/io.js +++ b/common/content/io.js @@ -360,7 +360,7 @@ lookup: } } else if (/\.css$/.test(filename)) - storage.styles.registerSheet(uri.spec, false, true); + styles.registerSheet(uri.spec, false, true); else { commands.execute(file.read(), null, silent || "loud", null, { file: file.path, line: 1 }); |