generated from DiscipleTools/disciple-tools-one-page-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatic.js
44 lines (37 loc) · 1.35 KB
/
static.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
jQuery(document).ready(function() {
jQuery('#metrics-sidemenu').foundation('down', jQuery(`#ss-menu`));
let ss_ids = dtStatic.nav_ids
if( ! window.location.hash ) {
load_static_section_content( ss_ids[0] )
} else {
load_static_section_content( window.location.hash.replace('#', '') )
}
})
function load_static_section_content( id ) {
"use strict";
let chartDiv = jQuery('#chart')
chartDiv.empty().append(`<span class="loading-spinner active"></span>`)
jQuery('#metrics-sidemenu li').removeClass('side-menu-item-highlight')
jQuery('.'+id).addClass('side-menu-item-highlight')
jQuery.ajax({
type: 'POST',
contentType: "application/json; charset=utf-8",
data: JSON.stringify( { 'id': id } ),
dataType: "json",
url: dtStatic.root + 'static-section/v1/content',
beforeSend: function(xhr) {
xhr.setRequestHeader('X-WP-Nonce', dtStatic.nonce);
},
})
.done( function( response ) {
chartDiv.empty().append(`
${response}
`)
jQuery('#metrics-sidemenu li').removeClass('side-menu-item-highlight')
jQuery('.'+id).addClass('side-menu-item-highlight')
}) // end success statement
.fail(function (err) {
console.log("error")
console.log(err)
})
}