Messed around with API document: Improved layout, removed animation, added <Content> type
This commit is contained in:
parent
ca438a718a
commit
bb816b9c95
4 changed files with 9 additions and 10 deletions
|
@ -8,7 +8,8 @@ var types = {
|
|||
"Array<Element>": "An Array of DOM Elements.",
|
||||
"Array<String>": "An Array of strings.",
|
||||
Function: "A reference to a Javascript function.",
|
||||
XMLHttpRequest: "An XMLHttpRequest object (referencing a HTTP request)."
|
||||
XMLHttpRequest: "An XMLHttpRequest object (referencing a HTTP request).",
|
||||
"<Content>": "A String (to generate HTML on-the-fly), a DOM Element, an Array of DOM Elements or a jQuery object"
|
||||
};
|
||||
|
||||
$(document).ready(function(){
|
||||
|
@ -18,7 +19,7 @@ $(document).ready(function(){
|
|||
}).ToolTipDemo('#fff');
|
||||
|
||||
$("a.name").click(function(){
|
||||
$("div.more,div.short",this.parentNode.parentNode).toggle('slow');
|
||||
$("div.more,div.short",this.parentNode.parentNode).toggle();
|
||||
return false;
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue