From add331408b0f207b82f3ec1b76251c700197e807 Mon Sep 17 00:00:00 2001 From: Pacien TRAN-GIRARD Date: Mon, 16 Jun 2014 19:30:53 +0200 Subject: Import slides --- slides/intermediaire/js/humane/humane-themed.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 slides/intermediaire/js/humane/humane-themed.js (limited to 'slides/intermediaire/js/humane/humane-themed.js') diff --git a/slides/intermediaire/js/humane/humane-themed.js b/slides/intermediaire/js/humane/humane-themed.js new file mode 100644 index 0000000..945a8d6 --- /dev/null +++ b/slides/intermediaire/js/humane/humane-themed.js @@ -0,0 +1,13 @@ +define([ 'humane' ], function(humane) { + + var themePath = 'js/humane/libnotify.css'; + + var style = document.createElement('link'); + style.rel = 'stylesheet'; + style.type = 'text/css'; + style.href = themePath; + document.querySelector('head').appendChild(style); + + return humane; + +}); -- cgit v1.2.3