Created
February 19, 2016 12:16
-
-
Save manabuyasuda/828eab9b40c650ac6928 to your computer and use it in GitHub Desktop.
ページ内に特定のclassが指定されている場合に実行する
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
// `.js-matchHeight`がページ内にあればその要素の高さを揃える | |
$(function() { | |
var $class = $('.js-matchHeight'); | |
if($class.length) { | |
$class.matchHeight(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment