1
0
mirror of https://github.com/Hutchy68/pivot.git synced 2025-12-19 15:27:03 +01:00

Making Font Awesome 'preload' a feature as this does not effect everyone. Absolute latest Foundation 5 js from their repo to fix all JQMigrate warnings.

This commit is contained in:
Tom Hutchison
2018-02-15 12:42:07 -05:00
parent 52aecafbc9
commit 65964dc883
18 changed files with 147 additions and 85 deletions

View File

@@ -6,7 +6,7 @@
Foundation.libs.joyride = {
name : 'joyride',
version : '5.5.3',
version : '{{VERSION}}',
defaults : {
expose : false, // turn on or off the expose feature
@@ -668,8 +668,8 @@
expose.css({
top : el.offset().top,
left : el.offset().left,
width : el.outerWidth(true),
height : el.outerHeight(true)
width : el.outerWidth(),
height : el.outerHeight()
});
exposeCover = $(this.settings.template.expose_cover);
@@ -828,9 +828,9 @@
corners : function (el) {
if (el.length === 0) {
return [false, false, false, false];
return [false, false, false, false];
}
var w = $(window),
window_half = w.height() / 2,
//using this to calculate since scroll may not have finished yet.