Skip to content

Instantly share code, notes, and snippets.

View zergiocosta's full-sized avatar
👽

Sergio Costa zergiocosta

👽
View GitHub Profile
@zergiocosta
zergiocosta / File structure for general projects
Last active December 20, 2015 14:09
What I'm working with
|
├── api/
├── assets/
│ │ css/
│ │ ├── plugins.css
│ │ ├── print.css
│ │ └── style.css
│ │ fonts/
│ │ images/
│ │ ├── bgs/
@zergiocosta
zergiocosta / phonegap-alertbox.js
Last active August 31, 2015 17:18
Manipulating content into alert boxes
// simple alert box
navigator.notification.alert(
"Alert body text",
myFunction, // function to be called when alert is triggered
'My alert title',
"Button"
);
function myFunction(){
console.log('working fine');
}
@zergiocosta
zergiocosta / jQuery UI datepicker pt-br
Created May 18, 2015 18:11
Tradução do módulo datepicker do jQuery UI para português brasileiro
jQuery(function($){
$.datepicker.regional['pt-BR'] = {
closeText: 'Fechar',
prevText: '<Anterior',
nextText: 'Próximo>',
currentText: 'Hoje',
monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho',
'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun',
'Jul','Ago','Set','Out','Nov','Dez'],