Skip to content

Commit

Permalink
Merge pull request #3 from kevcenteno/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
kevcenteno committed Feb 10, 2015
2 parents 680a0df + 393653e commit dfeaa57
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flowtype.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
var width = elw > settings.maximum ? settings.maximum : elw < settings.minimum ? settings.minimum : elw,
fontBase = width / settings.fontRatio,
fontSize = fontBase > settings.maxFont ? settings.maxFont : fontBase < settings.minFont ? settings.minFont : fontBase;
console.log('holler');
console.log('at');
console.log('your');

$el.css({
'font-size' : fontSize + unit,
Expand All @@ -62,4 +65,4 @@
changes(this);
});
};
}(jQuery));
}(jQuery));

0 comments on commit dfeaa57

Please sign in to comment.