;(function($,_,undefined){"use strict";ips.controller.register('postmarks.front.topic.postmark',{initialize:function(){this.on('click',this.markPostApproved);},markPostApproved:function(e){e.preventDefault();var url=$(e.currentTarget).attr('href');ips.getAjax()(url).done(function(response){$.each(response,function(id,info){$('#markApproved_'+id).addClass('postMarkOk').attr('title',info);});}).fail(function(jqXHR,textStatus,errorThrown){if(jqXHR.responseJSON['error']){ips.ui.alert.show({type:'alert',icon:'warn',message:jqXHR.responseJSON['error'],callbacks:{}});}else{window.location=url;}});}});}(jQuery,_));;