diff options
author | Silvio <silvio@socioambiental.org> | 2013-06-05 16:51:34 -0300 |
---|---|---|
committer | Silvio <silvio@socioambiental.org> | 2013-06-05 16:51:34 -0300 |
commit | 5111989ef3567be4a30f2db7449601c21c5d7d08 (patch) | |
tree | 0f4c247d4cefd7ef24edfc8f05162c0034abe0f1 | |
parent | c5d569f54a0d80de75a7a12516d282f19d7fa985 (diff) | |
download | timelinejs-5111989ef3567be4a30f2db7449601c21c5d7d08.tar.gz timelinejs-5111989ef3567be4a30f2db7449601c21c5d7d08.tar.bz2 |
Adding classes to widget body
-rw-r--r-- | timelinejs.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timelinejs.module b/timelinejs.module index 2a4db84..8949b6c 100644 --- a/timelinejs.module +++ b/timelinejs.module @@ -174,7 +174,7 @@ function timelinejs_widget($nid = NULL, $width = '960px', $height = '500px') { $output .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; $output .= '<html><head>'; $output .= '<title>'. t('Timeline: @title', array('@title' => $node->title)) .'</title>'; - $output .= '</head></body>'; + $output .= '</head><body class="widget timeline-widget">'; $output .= timelinejs($nid, $width, $height); $output .= '</body></html>'; |