1
Fork 0

Fix lint of creative JS

This commit is contained in:
Jake Howard 2016-05-20 22:32:51 +01:00
parent 7b50e8b606
commit cc240e2d4f
2 changed files with 61 additions and 60 deletions

View file

@ -4,41 +4,41 @@
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
(function($) {
"use strict"; // Start of use strict
// jQuery for page scrolling feature - requires jQuery Easing plugin
$('a.page-scroll').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: ($($anchor.attr('href')).offset().top - 50)
}, 1250, 'easeInOutExpo');
// jQuery for page scrolling feature - requires jQuery Easing plugin
$('a.page-scroll').bind('click', function(event) {
const anchor = $(this);
$('html, body').stop().animate(
{
scrollTop: ($(anchor.attr('href')).offset().top - 50)
},
1250,
'easeInOutExpo'
);
event.preventDefault();
});
});
// Highlight the top nav as scrolling occurs
$('body').scrollspy({
// Highlight the top nav as scrolling occurs
$('body').scrollspy({
target: '.navbar-fixed-top',
offset: 51
})
});
// Closes the Responsive Menu on Menu Item Click
$('.navbar-collapse ul li a').click(function() {
// Closes the Responsive Menu on Menu Item Click
$('.navbar-collapse ul li a').click(function() {
$('.navbar-toggle:visible').click();
});
});
// Fit Text Plugin for Main Header
$("h1").fitText(
// Fit Text Plugin for Main Header
$('h1').fitText(
1.2, {
minFontSize: '35px',
maxFontSize: '65px'
}
);
);
// Offset for Main Navigation
$('#main-nav').affix({
// Offset for Main Navigation
$('#main-nav').affix({
offset: {
top: 100
}
});
})(jQuery); // End of use strict
});

View file

@ -1,4 +1,3 @@
/*global jQuery */
/*!
* FitText.js 1.2
*
@ -9,25 +8,29 @@
* Date: Thu May 05 14:23:00 2011 -0600
*/
(function( $ ){
$.fn.fitText = function( kompressor, options ) {
$.fn.fitText = function( kompressor, options ) {
// Setup options
var compressor = kompressor || 1,
const compressor = kompressor || 1,
settings = $.extend({
'minFontSize' : Number.NEGATIVE_INFINITY,
'maxFontSize' : Number.POSITIVE_INFINITY
}, options);
return this.each(function(){
return this.each(function() {
// Store the object
var $this = $(this);
// Resizer() resizes items based on the object width divided by the compressor * 10
var resizer = function () {
$this.css('font-size', Math.max(Math.min($this.width() / (compressor*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
$this.css('font-size',
Math.max(
Math.min(
$this.width() / (compressor * 10),
parseFloat(settings.maxFontSize)
),
parseFloat(settings.minFontSize))
);
};
// Call once to set.
@ -38,6 +41,4 @@
});
};
})( jQuery );
};