Skip to content

Commit

Permalink
Bump to rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
kball committed Dec 7, 2016
1 parent e540d24 commit 74d6cdf
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 22 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "foundation-sites",
"version": "6.3.0-rc1",
"version": "6.3.0-rc2",
"license": "MIT",
"main": [
"scss/foundation.scss",
Expand Down
2 changes: 1 addition & 1 deletion dist/js/plugins/foundation.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"use strict";

var FOUNDATION_VERSION = '6.3-rc1';
var FOUNDATION_VERSION = '6.3.0-rc2';

// Global Foundation object
// This is attached to the window, or used as a module for AMD/Browserify
Expand Down
2 changes: 1 addition & 1 deletion dist/js/plugins/foundation.core.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/js/plugins/foundation.equalizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,8 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
* Changes the CSS height property of each child in an Equalizer parent to match the tallest by row
* @param {array} groups - An array of heights of children within Equalizer container grouped by row with element,height and max as last child
* @fires Equalizer#preequalized
* @fires Equalizer#preequalizedRow
* @fires Equalizer#postequalizedRow
* @fires Equalizer#preequalizedrow
* @fires Equalizer#postequalizedrow
* @fires Equalizer#postequalized
*/

Expand All @@ -304,15 +304,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
}
/**
* Fires before the heights per row are applied
* @event Equalizer#preequalizedRow
* @event Equalizer#preequalizedrow
*/
this.$element.trigger('preequalizedrow.zf.equalizer');
for (var j = 0, lenJ = groupsILength - 1; j < lenJ; j++) {
$(groups[i][j][0]).css({ 'height': max });
}
/**
* Fires when the heights per row have been applied
* @event Equalizer#postequalizedRow
* @event Equalizer#postequalizedrow
*/
this.$element.trigger('postequalizedrow.zf.equalizer');
}
Expand Down
5 changes: 2 additions & 3 deletions dist/js/plugins/foundation.reveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,8 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons

}, {
key: '_makeOverlay',
value: function _makeOverlay(id) {
var $overlay = $('<div></div>').addClass('reveal-overlay').appendTo(this.options.appendTo);
return $overlay;
value: function _makeOverlay() {
return $('<div></div>').addClass('reveal-overlay').appendTo(this.options.appendTo);
}

/**
Expand Down
Loading

0 comments on commit 74d6cdf

Please sign in to comment.