$(function(){
$('div.bbs-html').each(function(){
$(this).find('a').attr('rel', 'noopener noreferrer');
});
new $.module['form']
(
$('.save-form'), {
success : function(module, insert_id){
//location.href='/s050203/index'
location.reload();
},
page_exit : true,
jgrow : false
}
);
$('.bbs-html img').each
(
function(){
if( this.width > 300 ){
$(this).addClass('board-picture').css('cursor', 'pointer');
$(this).attr('tabindex', 0);
}
}
);
new $.module['modal'](
$('.board-picture')
);
/*if( location.hash != '#u' ) {
history.pushState(null, null, "#u");
}*/
$.window.on
(
"hashchange",
function(){
if( location.hash == '' ){
location.href = '/s050203/index/page/7';
}
}
);
$('.socialbox').on(
'click', function(e) {
alert('s');
});
});