AddonSDK loadSheet example
const { browserWindows } = require("sdk/windows"); | |
const { loadSheet } = require("sdk/stylesheet/utils"); | |
//This is how to load an external stylesheet | |
for(let w of browserWindows){ | |
loadSheet(viewFor(w), "./myStyleSheet.css","author" ); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment