2016-08-20 21:20:53 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
jQuery( document ).ready(function( $ ) {
|
|
|
|
|
|
|
|
$('a').smoothScroll({
|
2016-08-21 03:28:53 +00:00
|
|
|
speed: 400,
|
|
|
|
offset: -20
|
2016-08-20 21:20:53 +00:00
|
|
|
});
|
|
|
|
|
2016-08-21 03:28:53 +00:00
|
|
|
var sticky = new Sticky('.stickyscroll');
|
|
|
|
|
2016-08-24 01:09:09 +00:00
|
|
|
var alerts = new Alerts();
|
|
|
|
if(alertsData) {
|
|
|
|
_.forEach(alertsData, (alertRow) => {
|
|
|
|
alerts.push(alertRow);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-20 21:20:53 +00:00
|
|
|
});
|