var BASE_URL = 'https://assine.horario.com.br';
$(document).ready(function() {
$('body').bootstrapMaterialDesign();
//VOLTA PARA A PAGINA PRINCIPAL
$(".voltar-passo1").click(function(event) {
event.preventDefault();
window.location.replace(BASE_URL+"");
});
$('.volta-pagina').click(function() {
//event.preventDefault();
window.history.back();
});
$('.volta-home').click(function() {
//event.preventDefault();
window.location.replace('https://www.horario.com.br');
});
$('[data-toggle="popover"]').popover({'html':true});
$('input[maxlength]').on('keydown', function(event) {
var $this = $(this);
if ($this.val().length > parseInt($this.attr('maxlength'), 10)) {
event.preventDefault();
}
});
$('.open-chat').click(function() {
window.open("http://programaurania.com.br/phplive/phplive.php?d=0&onpage=hphp%3A%2F%2Fhorario.com.br%2Fphplive%2Fsetup%2Fcode.php%3Fses%3Dd8e1113917a16f95181169df3ca7089c%26deptid%3D2%26proto%3D0%261421160279&title=PHP%20Live!%20Support%204.3.5&theme=&js_name=&js_email=&widget=0&custom=", "ExpandedWindow", "width=600,height=600,left=0,top=0,resizable=yes,menubar=no,location=yes,status=yes,scrollbars=yes")
});
});