reg-success-prize.page.js
365 Bytes
require('scss/passport/reg-success-prize.page.scss');
const $ = require('yoho-jquery');
function hideDownloadBar() {
$('#top-downloadbar').hide();
}
function checkEnviroment() {
if (!/yohobuy/i.test(navigator.userAgent)) {
$('#btn_goto_download').show();
}
}
$(document).ready(function() {
hideDownloadBar();
checkEnviroment();
});