Code formatting according to standardjs
This commit is contained in:
parent
e2bbe9273a
commit
3d4eef5eb0
10 changed files with 44 additions and 44 deletions
|
|
@ -1,5 +1,5 @@
|
|||
// This is called everytime
|
||||
function setup() {
|
||||
function setup () {
|
||||
'use strict';
|
||||
console.info('\n', hippie.brand, '\n\n');
|
||||
if (debugOn) {
|
||||
|
|
@ -12,14 +12,14 @@ function setup() {
|
|||
}
|
||||
|
||||
// MODULE Scroll navigation
|
||||
function HippieScroll($el) {
|
||||
function HippieScroll ($el) {
|
||||
'use strict';
|
||||
// this.$el = $el;
|
||||
// console.log('Elements:', $el, this.$el);
|
||||
|
||||
|
||||
// Toggle display on scroll position
|
||||
// console.log('Scroll object added');
|
||||
this.check = function() {
|
||||
this.check = function () {
|
||||
// console.log('Scroll position checked');
|
||||
hippie.screen.y = Math.min($(document).scrollTop(), document.documentElement.scrollTop);
|
||||
if (hippie.screen.y > initY) {
|
||||
|
|
@ -37,14 +37,14 @@ function HippieScroll($el) {
|
|||
}
|
||||
};
|
||||
// Add events to navigation elements
|
||||
$('.js_scrolltop').click(function(event) {
|
||||
$('.js_scrolltop').click(function (event) {
|
||||
event.preventDefault();
|
||||
$('html, body').animate({
|
||||
scrollTop: 0
|
||||
}, basicEase);
|
||||
// console.log('Scrolled to top');
|
||||
});
|
||||
$('.js_scrolldown').click(function(event) {
|
||||
$('.js_scrolldown').click(function (event) {
|
||||
event.preventDefault();
|
||||
var pos = Math.max(hippie.screen.dh, hippie.body.h) - hippie.screen.vh;
|
||||
$('html').scrollTop(pos);
|
||||
|
|
@ -54,7 +54,7 @@ function HippieScroll($el) {
|
|||
}
|
||||
|
||||
// get document coordinates of the element
|
||||
// function getCoords(elem) {
|
||||
// function getCoords (elem) {
|
||||
// let box = elem.getBoundingClientRect();
|
||||
//
|
||||
// return {
|
||||
|
|
@ -64,7 +64,7 @@ function HippieScroll($el) {
|
|||
// }
|
||||
|
||||
// https://stackoverflow.com/a/488073/1444149
|
||||
// function Utils() {}
|
||||
// function Utils () {}
|
||||
//
|
||||
// Utils.prototype = {
|
||||
// constructor: Utils,
|
||||
|
|
@ -86,9 +86,9 @@ function HippieScroll($el) {
|
|||
|
||||
// TEST
|
||||
|
||||
function scrollNav() {
|
||||
function scrollNav () {
|
||||
'use strict';
|
||||
$('.nav a').click(function() {
|
||||
$('.nav a').click(function () {
|
||||
//Toggle Class
|
||||
$(".active").removeClass("active");
|
||||
$(this).closest('li').addClass("active");
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ setup();
|
|||
|
||||
// DOM ready
|
||||
// -----------------------------------------------------------------------------
|
||||
$(document).ready(function() {
|
||||
$(document).ready(function () {
|
||||
'use strict';
|
||||
|
||||
// logPerf('DOM ready.');
|
||||
|
|
@ -17,16 +17,16 @@ $(document).ready(function() {
|
|||
|
||||
// Displays explanation popup
|
||||
$('.js_pop').hover(
|
||||
function() {
|
||||
function () {
|
||||
// if ($(this).attr('emmet')) {
|
||||
//
|
||||
// }
|
||||
$(this).next('.exp_pop').show();
|
||||
}, function() {
|
||||
}, function () {
|
||||
$(this).next('.exp_pop').hide();
|
||||
}
|
||||
).mousemove(
|
||||
function(event) {
|
||||
function (event) {
|
||||
$(this).next('.exp_pop').css({
|
||||
'top': event.pageY - $(this).next('.exp_pop').outerHeight() - 4,
|
||||
'left': event.pageX + 8
|
||||
|
|
@ -39,13 +39,13 @@ $(document).ready(function() {
|
|||
|
||||
// WIP Activates layer with explanation elements
|
||||
// Besser ::after oder ::before benutzen
|
||||
$('.js_showmeta').click(function(e) {
|
||||
$('.js_showmeta').click(function (e) {
|
||||
var $wrap, $pop;
|
||||
|
||||
if (expMode !== true) {
|
||||
expMode = true;
|
||||
|
||||
$('.js_pop').each(function(i, e) {
|
||||
$('.js_pop').each(function (i, e) {
|
||||
if ($(this).css('position') === 'static') {
|
||||
$(this).addClass('js_changed_pos');
|
||||
$(this).css('position', 'relative');
|
||||
|
|
@ -57,7 +57,7 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
} else {
|
||||
$('.js_pop').each(function(i, e) {
|
||||
$('.js_pop').each(function (i, e) {
|
||||
$wrap = $(this).parent('.exp_wrap');
|
||||
$pop = $wrap.next('.exp_pop').detach();
|
||||
$wrap.find('.exp_marker_pop').remove();
|
||||
|
|
@ -78,7 +78,7 @@ $(document).ready(function() {
|
|||
console.log('Explanation mode', expMode);
|
||||
});
|
||||
|
||||
$('#gameIcon').click(function(event) {
|
||||
$('#gameIcon').click(function (event) {
|
||||
event.preventDefault();
|
||||
$(this).clone().appendTo('#gameDetail');
|
||||
$(this).siblings().clone().appendTo('#gameDetail');
|
||||
|
|
|
|||
|
|
@ -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.');
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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.');
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
{% include "hippie/partials/_head_script.njk" %}
|
||||
<script>
|
||||
debugOn = true;
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
logPerf('Document \'DOMContentLoaded\' event fired.');
|
||||
});
|
||||
logPerf('On HEAD, starting...');
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
{% include "hippie/partials/_head_script.njk" %}
|
||||
<script>
|
||||
debugOn = true;
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
logPerf('Document \'DOMContentLoaded\' event fired.');
|
||||
});
|
||||
logPerf('On HEAD, starting...');
|
||||
|
|
|
|||
|
|
@ -7,13 +7,13 @@ var assetsLoaded = false;
|
|||
|
||||
// Get the current time difference between page
|
||||
// load and when this func was invoked
|
||||
function getTimeDiff() {
|
||||
function getTimeDiff () {
|
||||
return new Date().getTime() - performance.timing.navigationStart;
|
||||
}
|
||||
|
||||
// log message to console and add
|
||||
// performance measuring information
|
||||
function logPerf(msg) {
|
||||
function logPerf (msg) {
|
||||
if (debugOn) {
|
||||
if (debugOnScreen && assetsLoaded) {
|
||||
if (!$('#jsLogPerf').length) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue