From 6c3314abed7a54302afde8c7522745825cada33f Mon Sep 17 00:00:00 2001 From: John Resig Date: Sun, 13 Aug 2006 18:36:50 +0000 Subject: [PATCH] Updated the doc js to remove old code. --- docs/js/doc.js | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/docs/js/doc.js b/docs/js/doc.js index a608afd..8bd25b1 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}
    {$.desc}
    {$.examples}
  • ", - 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, "

    ") ); -- 1.7.10.4