Forked from shama/electron-reliable-css-path.html
Last active
August 29, 2015 14:21
-
-
Save RinatMullayanov/8f213810e3607898be1b to your computer and use it in GitHub Desktop.
Snippet for http://electron.atom.io/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
Hi | |
<script> | |
var link = document.createElement('link') | |
link.setAttribute('rel', 'stylesheet') | |
link.setAttribute('href', require('path').join(__dirname, 'css', 'app.css')) | |
document.head.appendChild(link) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment