mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
|
|
||
|
function bindNavToContent(containerId, fileName, loadNow=false)
|
||
|
{
|
||
|
$("#page-wrapper").off();
|
||
|
$(containerId).on("click", function() {
|
||
|
$("#page-wrapper").load("/content/"+fileName+".html");
|
||
|
});
|
||
|
if (loadNow)
|
||
|
{
|
||
|
$("#page-wrapper").load("/content/"+fileName+".html");
|
||
|
}
|
||
|
}
|