aboutsummaryrefslogtreecommitdiffstats
path: root/build/docs/js/doc.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/docs/js/doc.js')
-rw-r--r--build/docs/js/doc.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js
new file mode 100644
index 000000000..8bd25b1c3
--- /dev/null
+++ b/build/docs/js/doc.js
@@ -0,0 +1,24 @@
+var types = {
+ jQuery: "A jQuery object.",
+ Object: "A simple Javascript object. For example, it could be a String or a Number.",
+ String: "A string of characters.",
+ Number: "A numeric valid.",
+ Element: "The Javascript object representation of a DOM Element.",
+ Hash: "A Javascript object that contains key/value pairs in the form of properties and values.",
+ "Array<Element>": "An Array of DOM Elements.",
+ "Array<String>": "An Array of strings.",
+ Function: "A reference to a Javascript function."
+};
+
+$(document).ready(function(){
+ $("span.tooltip").ToolTipDemo('#fff');
+
+ $("a.name").click(function(){
+ $("div.more,div.short",this.parentNode.parentNode).toggle().find("div.desc",function(){
+ $(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
+ });
+ return false;
+ });
+
+ $("#docs").alphaPager( 1 );
+});