aboutsummaryrefslogtreecommitdiffstats
path: root/demos/functional/js/behaviour.functionaldemos.js
blob: 54988d6cabaa419180735e280013e3ec111553e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
$(document).ready(function() {

	$('.component-links a').history(function() {
		loadDemo( $(this).attr('href').replace(/^#/, "") );
	});

	var instructions = $("#containerDemo").html();
	$.ajaxHistory.initialize(function() {
		$("#containerDemo").html(instructions);
	});

});