diff --git a/docs/js/doc.js b/docs/js/doc.js
index a608afd5b..8bd25b1c3 100644
--- a/docs/js/doc.js
+++ b/docs/js/doc.js
@@ -1,14 +1,3 @@
-var rules = {
- self: "{$}",
- type: function(a){ /*console.log( a, types[a] );*/ return types[a]; },
- "self[*]": "
{$.type} " +
- "{$.name}({$.params})" +
- "{$.short}
",
- trim: function(a){ console.log( a ); return !a || a.replace(/, $/); },
- "self[*].params[*]": " {$.type} {$.name}, ",
- "self[*].examples[*]": "Example:
{$.desc}
{$.code}
HTML:{$.before}
Result:{$.result}
"
-};
-
var types = {
jQuery: "A jQuery object.",
Object: "A simple Javascript object. For example, it could be a String or a Number.",
@@ -22,7 +11,8 @@ var types = {
};
$(document).ready(function(){
- $("span[@title]").addClass("tooltip").ToolTipDemo('#fff');
+ $("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, "
") );