blob: 4780f60b0301a50bbee54b38f87efb0bc259b647 [file] [log] [blame]
$(document).ready(function() {
var annotations = $("dt:contains('Annotations')").next("dd").children("span.name");
addBadges(annotations, "DeveloperApi", ":: DeveloperApi ::", '<span class="developer badge">Core Developer API</span>');
addBadges(annotations, "Experimental", ":: Experimental ::", '<span class="experimental badge">Experimental</span>');
});
function addBadges(allAnnotations, name, tag, html) {
var annotations = allAnnotations.filter(":contains('" + name + "')")
var tags = $(".cmt:contains(" + tag + ")")
// Remove identifier tags from comments
tags.each(function(index) {
var oldHTML = $(this).html();
var newHTML = oldHTML.replace(tag, "");
$(this).html(newHTML);
});
// Add badges to all containers
tags.prevAll("h4.signature")
.add(annotations.closest("div.fullcommenttop"))
.add(annotations.closest("div.fullcomment").prevAll("h4.signature"))
.prepend(html);
}