This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* _mixins.scss | |
*/ | |
$font_dir: '../fonts/'; | |
/* _simple-font-url('Chunkfive', 'eot'); */ | |
@function _simple-font-url($name, $extension) | |
{ | |
@return url($font_dir + $name + '-webfont.' + $extension); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//******************************************************** | |
// plugin for equalizing heights, responsively | |
//******************************************************** | |
(function ($) { | |
$.fn.eqHeights = function() { | |
var el = $(this); | |
if (el.length > 0 && !el.data('eqHeights')) { | |
$(window).on('resize.eqHeights', function() { | |
el.eqHeights(); | |
}); |