summaryrefslogtreecommitdiff
path: root/timelinejs.module
diff options
context:
space:
mode:
Diffstat (limited to 'timelinejs.module')
-rw-r--r--timelinejs.module6
1 files changed, 4 insertions, 2 deletions
diff --git a/timelinejs.module b/timelinejs.module
index 3c3f6a1..bdbfa8d 100644
--- a/timelinejs.module
+++ b/timelinejs.module
@@ -152,8 +152,10 @@ function timelinejs($nid, $width = '960px', $height = '500px') {
global $language;
global $theme;
- $path = drupal_get_path('theme', $theme);
- $css = (file_exists($path .'/timeline.css')) ? '/'. $path .'/timeline.css' : NULL;
+ $theme_path = drupal_get_path('theme', $theme);
+ $library_path = drupal_get_path('libraries', 'timelinejs');
+
+ $css = (file_exists($theme_path .'/timeline.css')) ? '/'. $theme_path .'/timeline.css' : '/'. $library_path .'/compiled/css/timeline.css';
return theme('timelinejs', array(
'width' => $width,