summaryrefslogtreecommitdiffstats
path: root/script/custom.js
blob: 12fe817ea93ddcd71a3e1b6e5da21141739123c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
function loadContent(elem, source)
{
	var waitForIt = function() {
		if (typeof $ === 'undefined') {
			setTimeout(waitForIt, 50);
			return;
		}
		$(elem).load(source);
	}
	waitForIt();
}