removed mods directory from the ATutor codebase
[atutor.git] / mods / hello_world / content_tool_action.js
diff --git a/mods/hello_world/content_tool_action.js b/mods/hello_world/content_tool_action.js
deleted file mode 100644 (file)
index 01f11d0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/**\r
- * This javascript is to perform the functionalities that are required to implement\r
- * the add-on content tool. \r
- * \r
- * Register this javascript @ module.php => $this->_content_tools["js"] \r
- */\r
-\r
-/*global jQuery*/\r
-/*global ATutor */\r
-/*global tinyMCE */\r
-/*global window */\r
-\r
-ATutor = ATutor || {};\r
-ATutor.mods = ATutor.mods || {};\r
-ATutor.mods.hello_world = ATutor.mods.hello_world || {};\r
-\r
-(function () {\r
-    var helloWorldOnClick = function () {\r
-       alert("Clicked on hello world tool icon!");\r
-    }\r
-    \r
-       //set up click handlers and show/hide appropriate tools\r
-    var initialize = function () {\r
-        jQuery("#helloworld_tool").click(helloWorldOnClick);\r
-    };\r
-    \r
-    jQuery(document).ready(initialize);\r
-})();
\ No newline at end of file