12 lines
No EOL
287 B
JavaScript
12 lines
No EOL
287 B
JavaScript
$(document).ready(function() {
|
|
|
|
$('.component-links a').history(function() {
|
|
loadDemo( $(this).attr('href').replace(/^#/, "") );
|
|
});
|
|
|
|
var instructions = $("#containerDemo").html();
|
|
$.ajaxHistory.initialize(function() {
|
|
$("#containerDemo").html(instructions);
|
|
});
|
|
|
|
}); |