Added alerts functionality + modal UI

This commit is contained in:
NGPixel
2016-08-23 21:09:09 -04:00
parent aa740dea7a
commit 52c9821189
13 changed files with 206 additions and 14 deletions

View File

@@ -9,4 +9,11 @@ jQuery( document ).ready(function( $ ) {
var sticky = new Sticky('.stickyscroll');
var alerts = new Alerts();
if(alertsData) {
_.forEach(alertsData, (alertRow) => {
alerts.push(alertRow);
});
}
});