Newer
Older
medialib-manager / static / js / lib.js
function getSingleMediaFileInfo(filepath, callback) {
	$.getJSON(`/single-json?path=${ filepath }`, function(resp) {
		callback(resp);
	});
}