wikijs-fork/client/js/app.js

58 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-02-09 01:52:37 +00:00
'use strict'
2017-02-09 01:52:37 +00:00
jQuery(document).ready(function ($) {
2016-08-28 15:27:05 +00:00
// ====================================
2016-08-28 01:46:10 +00:00
// Scroll
2016-08-28 15:27:05 +00:00
// ====================================
2016-08-28 01:46:10 +00:00
2017-02-09 01:52:37 +00:00
$('a').smoothScroll({
speed: 400,
offset: -70
})
2017-02-09 01:52:37 +00:00
var sticky = new Sticky('.stickyscroll')
2016-08-28 15:27:05 +00:00
// ====================================
// Notifications
// ====================================
2017-02-09 01:52:37 +00:00
$(window).bind('beforeunload', () => {
$('#notifload').addClass('active')
})
$(document).ajaxSend(() => {
$('#notifload').addClass('active')
}).ajaxComplete(() => {
$('#notifload').removeClass('active')
})
2016-08-28 01:46:10 +00:00
2017-02-09 01:52:37 +00:00
var alerts = new Alerts()
if (alertsData) {
_.forEach(alertsData, (alertRow) => {
alerts.push(alertRow)
})
}
2016-08-24 01:09:09 +00:00
// ====================================
// Establish WebSocket connection
// ====================================
2017-02-09 01:52:37 +00:00
var socket = io(window.location.origin)
2017-02-09 01:52:37 +00:00
// =include components/search.js
2016-08-28 15:27:05 +00:00
// ====================================
// Pages logic
// ====================================
2017-02-09 01:52:37 +00:00
// =include pages/view.js
// =include pages/create.js
// =include pages/edit.js
// =include pages/source.js
// =include pages/admin.js
})
2017-02-09 01:52:37 +00:00
// =include helpers/form.js
// =include helpers/pages.js
2016-09-05 18:11:51 +00:00
2017-02-09 01:52:37 +00:00
// =include components/alerts.js