diff options
-rw-r--r-- | timelinejs.module | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/timelinejs.module b/timelinejs.module index 48899bb..f1de06d 100644 --- a/timelinejs.module +++ b/timelinejs.module @@ -15,12 +15,6 @@ function timelinejs_node_view($node, $view_mode, $langcode) { } /** - * Implements hook_node_view_alter. - */ -function timelinejs_node_view_alter(&$build) { -} - -/** * Implements hook_menu() */ function timelinejs_menu() { @@ -69,7 +63,7 @@ function timelinejs_theme($existing, $type, $theme, $path) { } /** - * Get a score nid from an issue nid. + * Get a score nid from a timeline nid. */ function timelinejs_load_events($nid) { $query = db_select('field_data_field_timeline', 't'); @@ -121,6 +115,10 @@ function timelinejs_json($nid) { /** * Menu callback. + * + * @todo + * Check for a timeline.css in the current theme instead of using a hardcoded value. + * Dimensions should be configurable. */ function timelinejs($nid) { global $language; |