Skip to content

Commit e5474d6

Browse files
author
Brent Odell
committed
Update version files to 6.4.1
- And run rake upgrade task
1 parent 73fe181 commit e5474d6

31 files changed

+58
-18
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "foundation-rails",
3-
"version": "6.4.0.0",
3+
"version": "6.4.1.0",
44
"dependencies": {
5-
"foundation-sites": "6.4.0",
5+
"foundation-sites": "6.4.1",
66
"motion-ui": "1.2.3"
77
}
88
}

lib/generators/foundation/templates/_settings.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,5 +857,7 @@ $grid-margin-gutters: (
857857
medium: 30px
858858
);
859859
$grid-padding-gutters: $grid-margin-gutters;
860+
$grid-container-padding: $grid-padding-gutters;
861+
$grid-container-max: $global-width;
860862
$block-grid-max: 8;
861863

vendor/assets/js/foundation.abide.js.es6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class Abide extends Plugin {
1212
/**
1313
* Creates a new instance of Abide.
1414
* @class
15+
* @name Abide
1516
* @fires Abide#init
1617
* @param {Object} element - jQuery object to add the trigger to.
1718
* @param {Object} options - Overrides to the default plugin settings.
@@ -536,7 +537,7 @@ Abide.defaults = {
536537
number : /^[-+]?\d*(?:[\.\,]\d+)?$/,
537538

538539
// amex, visa, diners
539-
card : /^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$/,
540+
card : /^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|(?:222[1-9]|2[3-6][0-9]{2}|27[0-1][0-9]|2720)[0-9]{12}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$/,
540541
cvv : /^([0-9]){3,4}$/,
541542

542543
// http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#valid-e-mail-address

vendor/assets/js/foundation.accordion.js.es6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class Accordion extends Plugin {
1515
/**
1616
* Creates a new instance of an accordion.
1717
* @class
18+
* @name Accordion
1819
* @fires Accordion#init
1920
* @param {jQuery} element - jQuery object to make into an accordion.
2021
* @param {Object} options - a plain object with settings to override the default options.

vendor/assets/js/foundation.accordionMenu.js.es6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class AccordionMenu extends Plugin {
1818
/**
1919
* Creates a new instance of an accordion menu.
2020
* @class
21+
* @name AccordionMenu
2122
* @fires AccordionMenu#init
2223
* @param {jQuery} element - jQuery object to make into an accordion menu.
2324
* @param {Object} options - Overrides to the default plugin settings.

vendor/assets/js/foundation.core.js.es6

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
import $ from 'jquery';
44
import { GetYoDigits } from './foundation.util.core';
5-
var FOUNDATION_VERSION = '6.4.0';
5+
import { MediaQuery } from './foundation.util.mediaQuery';
6+
7+
var FOUNDATION_VERSION = '6.4.1';
68

79
// Global Foundation object
810
// This is attached to the window, or used as a module for AMD/Browserify
@@ -193,7 +195,7 @@ var Foundation = {
193195
}
194196

195197
if(type === 'undefined'){//needs to initialize the Foundation object, or an individual plugin.
196-
Foundation.MediaQuery._init();
198+
MediaQuery._init();
197199
Foundation.reflow(this);
198200
}else if(type === 'string'){//an individual method to invoke on a plugin or group of plugins
199201
var args = Array.prototype.slice.call(arguments, 1);//collect all the arguments, if necessary

vendor/assets/js/foundation.drilldown.js.es6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class Drilldown extends Plugin {
1919
/**
2020
* Creates a new instance of a drilldown menu.
2121
* @class
22+
* @name Drilldown
2223
* @param {jQuery} element - jQuery object to make into an accordion menu.
2324
* @param {Object} options - Overrides to the default plugin settings.
2425
*/

vendor/assets/js/foundation.dropdown.js.es6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class Dropdown extends Positionable {
1919
/**
2020
* Creates a new instance of a dropdown.
2121
* @class
22+
* @name Dropdown
2223
* @param {jQuery} element - jQuery object to make into a dropdown.
2324
* Object should be of the dropdown panel, rather than its anchor.
2425
* @param {Object} options - Overrides to the default plugin settings.

vendor/assets/js/foundation.dropdownMenu.js.es6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class DropdownMenu extends Plugin {
2020
/**
2121
* Creates a new instance of DropdownMenu.
2222
* @class
23+
* @name DropdownMenu
2324
* @fires DropdownMenu#init
2425
* @param {jQuery} element - jQuery object to make into a dropdown menu.
2526
* @param {Object} options - Overrides to the default plugin settings.

vendor/assets/js/foundation.equalizer.js.es6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class Equalizer extends Plugin {
1717
/**
1818
* Creates a new instance of Equalizer.
1919
* @class
20+
* @name Equalizer
2021
* @fires Equalizer#init
2122
* @param {Object} element - jQuery object to add the trigger to.
2223
* @param {Object} options - Overrides to the default plugin settings.

0 commit comments

Comments
 (0)