87
| <![CDATA[<script type="text/javascript">
$(document).ready(function(){
$.prettyLoader({
loader: '/inscricaoweb/js/loader/prettyLoader/ajax-loader.gif'
});
//ALERTAS (FREEOW)
parent.$('#freeow-br').freeow("", "", opts);
});
//JANELA ALTERAR SENHA
function funAlteraSenha() {
var myWinSenha=dhtmlwindow.open("myWinSenha", "iframe", "/inscricaoweb/admin/usuario/alterar-senha", "Senha", "width=350px,height=225px,resize=1,scrolling=1,center=1", "recal");
}
</script>]]>
|
132
| <![CDATA[<script type="text/javascript">
$(document).ready(function(){
$("#cpf").mask("999.999.999-99");
});
function funRecuperaSenha(cpf) {
$.ajax(
{
type: "POST",
url: "/inscricaoweb/candidato/recuperasenha/?cpf=" + cpf,
success: function(resposta) {
$('#freeow-br').freeow("Aviso", resposta, opts);
}
}
);
}
</script>]]>
|
279
| <![CDATA[<script>
/**
noback v0.0.1
library for prevent backbutton
Author: Kiko Mesquita: http://twitter.com/kikomesquita
Based on stackoverflow
* Copyright (c) 2015 @ kikomesquita
*/
//(function(window) {
// 'use strict';
//
//var noback = {
//
// //globals
// version: '0.0.1',
// history_api : typeof history.pushState !== 'undefined',
//
// init:function(){
// window.location.hash = '#no-back';
// noback.configure();
// },
//
// hasChanged:function(){
// if (window.location.hash == '#no-back' ){
// window.location.hash = '#';
// //mostra mensagem que não pode usar o btn volta do browser
// if($( "#msgAviso" ).css('display') =='none'){
// $( "#msgAviso" ).slideToggle("slow");
// }
// }
// },
//
// checkCompat: function(){
// if(window.addEventListener) {
// window.addEventListener("hashchange", noback.hasChanged, false);
// }else if (window.attachEvent) {
// window.attachEvent("onhashchange", noback.hasChanged);
// }else{
// window.onhashchange = noback.hasChanged;
// }
// },
//
// configure: function(){
// if ( window.location.hash == '#no-back' ) {
// if ( this.history_api ){
// history.pushState(null, '', '#');
// }else{
// window.location.hash = '#';
// //mostra mensagem que não pode usar o btn volta do browser
// if($( "#msgAviso" ).css('display') =='none'){
// $( "#msgAviso" ).slideToggle("slow");
// }
// }
// }
// noback.checkCompat();
// noback.hasChanged();
// }
//
// };
//
// // AMD support
// if (typeof define === 'function' && define.amd) {
// define( function() { return noback; } );
// }
// // For CommonJS and CommonJS-like
// else if (typeof module === 'object' && module.exports) {
// module.exports = noback;
// }
// else {
// window.noback = noback;
// }
//
// noback.init();
//}(window));
</script>]]>
|