Code formatting according to standardjs

This commit is contained in:
Stephan 2019-03-31 21:30:46 +02:00
parent e2bbe9273a
commit 3d4eef5eb0
10 changed files with 44 additions and 44 deletions

View file

@ -48,7 +48,7 @@
// ------------------------------------------------------------------------------
assetsLoaded = true;
logPerf('SCRIPT assets loaded.');
$( document ).ready(function() {
$( document ).ready(function () {
logPerf('JQ document \'ready\' event fired.');
});
logPerf('Application ready.');

View file

@ -70,7 +70,7 @@
<script type="text/javascript">
// Page specific
// ------------------------------------------------------------------------------
$( document ).ready(function() {
$( document ).ready(function () {
// jq-sticky-anything
$('#js_demo_fix').stickThis({
pushup: '#js_demo_stop'

View file

@ -233,7 +233,7 @@
<script type="text/javascript">
// Page specific
// ------------------------------------------------------------------------------
$( document ).ready(function() {
$( document ).ready(function () {
// jq-sticky-anything
$('#js_demo_fix').stickThis({
pushup: '#js_demo_stop'

View file

@ -592,11 +592,11 @@ logPerf('Assets loaded.');
// Create instance of object made by contructor function
var scrollUi = new HippieScroll($('.js_scrolltop'));
$(document).ready(function() {
$(document).ready(function () {
logPerf('JQ document ready event fired.');
});
$(document).scroll(function() {
$(document).scroll(function () {
scrollUi.check();
});
logPerf('Application ready.');