diff options
author | prashantsinalkar | 2016-09-01 14:40:35 +0530 |
---|---|---|
committer | prashantsinalkar | 2016-09-01 14:40:35 +0530 |
commit | 070ad87df2193aaf66b377c66f2ea9627e11b711 (patch) | |
tree | b79d2830370cf6cfe11b737762d16876f62b0ab9 | |
parent | 090b633219c93987626ad08d37011403b056b8cf (diff) | |
download | textbook_companion_fixer-070ad87df2193aaf66b377c66f2ea9627e11b711.tar.gz textbook_companion_fixer-070ad87df2193aaf66b377c66f2ea9627e11b711.tar.bz2 textbook_companion_fixer-070ad87df2193aaf66b377c66f2ea9627e11b711.zip |
fixed module name issue
-rw-r--r-- | textbook_companion_fixer.module | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/textbook_companion_fixer.module b/textbook_companion_fixer.module index 13271d0..43fd138 100644 --- a/textbook_companion_fixer.module +++ b/textbook_companion_fixer.module @@ -146,7 +146,6 @@ function scilab_fixer_caption_all() $page_content .= "<div id='fix-tbc-page'>"; $page_content .= "<center><span id='updating'>Updating...</span></center>"; $page_content .= "<span id='done'>Done.</span>"; - // $page_content .= drupal_get_form("scilab_fixer_caption_form"); $scilab_fixer_caption_form = drupal_get_form("scilab_fixer_caption_form"); $page_content .= drupal_render($scilab_fixer_caption_form); $page_content .= "</div>"; @@ -644,8 +643,8 @@ function scilab_fixer_code_all() } function scilab_fixer_init() { - drupal_add_css(drupal_get_path("module", "textbook_ companion_fixer") . "/css/textbook_ companion_fixer.css"); - drupal_add_js(drupal_get_path("module", "textbook_ companion_fixer") . "/js/textbook_ companion_fixer.js"); + drupal_add_css(drupal_get_path("module", "textbook_companion_fixer") . "/css/textbook_companion_fixer.css"); + drupal_add_js(drupal_get_path("module", "textbook_companion_fixer") . "/js/textbook_companion_fixer.js"); //drupal_add_js(drupal_get_path("module", "scilab_fixer") . "/js/jquery-noconfilct.js"); - drupal_add_js(drupal_get_path("module", "textbook_ companion_fixer") . "/js/selection.js"); + drupal_add_js(drupal_get_path("module", "textbook_companion_fixer") . "/js/selection.js"); } |