diff options
author | Pacien TRAN-GIRARD | 2014-06-16 19:30:53 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2014-06-16 19:30:53 +0200 |
commit | add331408b0f207b82f3ec1b76251c700197e807 (patch) | |
tree | efee398fbd8811adbad16dbe98b1b0506dddc363 /slides/final/js/humane/humane-themed.js | |
parent | c59a0f4780502c949c0d19287bea51a4c40fb109 (diff) | |
download | labviewplayer-add331408b0f207b82f3ec1b76251c700197e807.tar.gz |
Diffstat (limited to 'slides/final/js/humane/humane-themed.js')
-rw-r--r-- | slides/final/js/humane/humane-themed.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/slides/final/js/humane/humane-themed.js b/slides/final/js/humane/humane-themed.js new file mode 100644 index 0000000..945a8d6 --- /dev/null +++ b/slides/final/js/humane/humane-themed.js | |||
@@ -0,0 +1,13 @@ | |||
1 | define([ 'humane' ], function(humane) { | ||
2 | |||
3 | var themePath = 'js/humane/libnotify.css'; | ||
4 | |||
5 | var style = document.createElement('link'); | ||
6 | style.rel = 'stylesheet'; | ||
7 | style.type = 'text/css'; | ||
8 | style.href = themePath; | ||
9 | document.querySelector('head').appendChild(style); | ||
10 | |||
11 | return humane; | ||
12 | |||
13 | }); | ||