diff options
author | Silvio <silvio@socioambiental.org> | 2013-07-22 15:58:28 -0300 |
---|---|---|
committer | Silvio <silvio@socioambiental.org> | 2013-07-22 15:58:28 -0300 |
commit | d54daa4b81982988f1cf2bfe91168aed0447593c (patch) | |
tree | a595473c7ed9dbfaae20b7b078c67c99b787cf44 | |
parent | e3c0064b6588cb25f19debbe8287457806fabb57 (diff) | |
download | timelinejs-d54daa4b81982988f1cf2bfe91168aed0447593c.tar.gz timelinejs-d54daa4b81982988f1cf2bfe91168aed0447593c.tar.bz2 |
Fixing widget margin
-rw-r--r-- | timelinejs.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timelinejs.module b/timelinejs.module index 54a0412..19cc0cb 100644 --- a/timelinejs.module +++ b/timelinejs.module @@ -184,7 +184,7 @@ function timelinejs_widget($nid = NULL, $width = '960px', $height = '500px') { $output .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; $output .= '<html style="height: 100%;"><head>'; $output .= '<title>'. t('Timeline: @title', array('@title' => $node->title)) .'</title>'; - $output .= '</head><body class="widget timeline-widget" style="height: 100%;">'; + $output .= '</head><body class="widget timeline-widget" style="height: 100%; margin: 0px;">'; $output .= timelinejs($nid, $width, $height); $output .= '</body></html>'; |