2006-08-09 07:44:05 +02:00
|
|
|
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.",
|
2007-01-04 11:03:34 +01:00
|
|
|
Map: "A Javascript object that contains key/value pairs in the form of properties and values.",
|
2006-08-09 07:44:05 +02:00
|
|
|
"Array<Element>": "An Array of DOM Elements.",
|
|
|
|
"Array<String>": "An Array of strings.",
|
2006-12-12 19:26:52 +01:00
|
|
|
Function: "A reference to a Javascript function.",
|
2007-01-02 20:05:00 +01:00
|
|
|
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"
|
2006-08-09 07:44:05 +02:00
|
|
|
};
|
|
|
|
|
2006-08-13 05:05:31 +02:00
|
|
|
$(document).ready(function(){
|
2007-01-11 19:40:34 +01:00
|
|
|
var tooltips = $("span.tooltip").each(function() {
|
|
|
|
var type = this.innerHTML;
|
|
|
|
if( type.indexOf("|") != -1 ) {
|
|
|
|
var $this = $(this).empty();
|
|
|
|
$.each(type.split("\|"), function(i, n) {
|
|
|
|
var title = types[n] && " title=\"" + types[n] + "\"" || "";
|
|
|
|
var pipe = i != 0 ? "|" : "";
|
|
|
|
$this.append( pipe + "<span class=\"tooltip\" " + title + ">" + n + "</span>" );
|
|
|
|
});
|
|
|
|
} else if ( types[ this.innerHTML ] )
|
2006-08-14 03:46:05 +02:00
|
|
|
this.title = types[ this.innerHTML ];
|
2007-01-11 19:40:34 +01:00
|
|
|
})
|
|
|
|
tooltips.add($("span.tooltip", tooltips)).ToolTipDemo('#fff');
|
2006-08-13 20:36:50 +02:00
|
|
|
|
2006-08-13 05:05:31 +02:00
|
|
|
$("a.name").click(function(){
|
2007-01-02 20:05:00 +01:00
|
|
|
$("div.more,div.short",this.parentNode.parentNode).toggle();
|
2006-08-13 05:05:31 +02:00
|
|
|
return false;
|
2006-08-09 07:44:05 +02:00
|
|
|
});
|
2006-09-05 08:21:35 +02:00
|
|
|
|
|
|
|
$("#docs").alphaPager(function(a){
|
2006-12-12 19:26:52 +01:00
|
|
|
return $.fn.text.apply( [a.getElementsByTagName("span")[2]] ).replace(/^\$\./,"").substr(0,1).toUpperCase();
|
2006-09-05 08:21:35 +02:00
|
|
|
});
|
2006-08-13 05:05:31 +02:00
|
|
|
});
|