Fix library URLs

This commit is contained in:
qucchia 2022-07-22 08:33:21 +02:00
parent 9347f72e29
commit b3fa1234b1

View File

@ -25,7 +25,7 @@ Builtin.prototype.getDescription = function() {
};
Builtin.prototype.getURL = function() {
if (this.type == "class")
if (this.type == "class" || this.type == "library")
anchor = this.class;
else if ("class" in this)
anchor = "l_"+this.class+"_"+this.name;