|
|
|
@ -308,6 +308,27 @@ var gameId = $('#game-select').val();
|
|
|
|
|
}
|
|
|
|
|
var promoteUrl = "{:U('Query/getSubPromotes')}"
|
|
|
|
|
initPromoteSelect(promoteUrl)
|
|
|
|
|
|
|
|
|
|
$('.keywords_information .keywords_mark').click(function() {
|
|
|
|
|
var that = $(this).siblings().addClass('active');
|
|
|
|
|
console.log(that);
|
|
|
|
|
$(document).click(function(event) {
|
|
|
|
|
var e = event || window.event;
|
|
|
|
|
var target= $(e.target);
|
|
|
|
|
if (!target.hasClass('keywords_information') && target.closest('.keywords_information').length<1) {
|
|
|
|
|
that.removeClass('active');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
that.find('.keywords_close').click(function() {
|
|
|
|
|
that.removeClass('active');
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</block>
|
|
|
|
|