close
Closes the sources popover.
Example - close the popover
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
showOn: "click",
sources: [{ url: "https://example.com", title: "Example" }]
});
var citation = $("#citation").data("kendoCitation");
citation.open();
citation.close();
</script>