From 070ad87df2193aaf66b377c66f2ea9627e11b711 Mon Sep 17 00:00:00 2001
From: prashantsinalkar
Date: Thu, 1 Sep 2016 14:40:35 +0530
Subject: fixed module name issue
---
textbook_companion_fixer.module | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
(limited to 'textbook_companion_fixer.module')
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 .= "
";
$page_content .= "
Updating...";
$page_content .= "Done.";
- // $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 .= "";
@@ -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");
}
--
cgit