Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import './custom-file-input.js'
import { getSession, newMessager } from './message.js'
const compareVersion = (a, b) => {
a = a.split('.')
b = b.split('.')
var i = 0
while (i < a.length && i < b.length) {
let n0 = +a[i],
n1 = +b[i]
let res = n0 < n1 ? -1 : n0 > n1 ? 1 : 0
if (res) return res
}
let res = a.length < b.length ? -1 : a.length > b.length ? 1 : 0
return res
}
jarallax($('.jarallax'), {
speed: 0.5,
imgWidth: 1366,
imgHeight: 768
})
$(_ => {
$('#vertical-ticker').totemticker({
row_height: '100px',
next: '#ticker-next',
previous: '#ticker-previous',
stop: '#stop',
start: '#start',
mousestop: true
})
})
$(document).ready($ => {
$('.scroll ').click(function (event) {