From 943aa94c965dcfa160c7216cb66bf6f11de38e38 Mon Sep 17 00:00:00 2001 From: Silvio Date: Wed, 24 Oct 2012 14:55:48 -0200 Subject: CSS fallback to the default stylesheet --- timelinejs.module | 6 ++++-- 1 file 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, -- cgit v1.2.3