Hide configure button when sport is changed

This commit is contained in:
Brian Miyaji
2015-04-14 17:56:49 +10:00
parent 2aecb6a116
commit 881a11c947

View File

@@ -620,4 +620,9 @@ jQuery(document).ready(function($){
// Fitvids
$(".sp-fitvids").fitVids();
// Display configure sport button
$(".sp-select-sport").change(function() {
$(".sp-configure-sport").hide();
});
});