mirror of https://github.com/interlegis/sapl.git
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							747 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							22 lines
						
					
					
						
							747 B
						
					
					
				| 
 | |
| tinymce.init({selector:'textarea'}); | |
| 
 | |
| function refreshDatePicker() { | |
|     $.datepicker.setDefaults($.datepicker.regional['pt-BR']); | |
|     $('.dateinput').datepicker(); | |
| } | |
| 
 | |
| function refreshMask() { | |
|     $('.telefone').mask("(99) 9999-9999", {placeholder:"(__) ____ -____"}); | |
|     $('.cpf').mask("000.000.000-00", {placeholder:"___.___.___-__"}); | |
|     $('.cep').mask("00000-000", {placeholder:"_____-___"}); | |
|     $('.rg').mask("0.000.000", {placeholder:"_.___.___"}); | |
|     $('.titulo_eleitor').mask("0000.0000.0000.0000", {placeholder:"____.____.____.____"}); | |
|     $('.hora').mask("00:00", {placeholder:"hh:mm"}); | |
|     $('.hora_hms').mask("00:00:00", {placeholder:"hh:mm:ss"}); | |
| } | |
| 
 | |
| $(document).ready(function(){ | |
|     refreshDatePicker(); | |
|     refreshMask(); | |
| });
 | |
| 
 |