You are here

function jquery_countdown_get_css in jQuery Countdown 6

Return the CSS filename of the jQuery.Countdown plugin library

1 call to jquery_countdown_get_css()
jquery_countdown_add in ./jquery_countdown.module
Adds a jQuery Countdown JavaScript element to the page.

File

./jquery_countdown.module, line 160
provides the jquery_countdown theme function and serversync callback

Code

function jquery_countdown_get_css() {
  $library_path = jquery_countdown_get_path();
  if (file_exists($library_path . '/jquery.countdown.css')) {
    return $library_path . '/jquery.countdown.css';
  }
  return FALSE;
}