Last active
January 27, 2016 02:14
-
-
Save lukasfarina/2486a4c7394a8cef067a to your computer and use it in GitHub Desktop.
Ideia em edição, futura lib para facilitar a validação e submissão de um formulário visando resolver os maiores problemas existentes no mundo de agências e desenvolvedores que buscam soluções pouco extensas na hora de executar um comportamento.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sendForm = (function () { | |
// Constructor | |
function _construct () { | |
return { | |
host: '', | |
// Methods | |
_config: config | |
} | |
} | |
// New | |
function config(config) { | |
} | |
return _construct(); | |
})(); | |
sendForm._config({ | |
host: '/Newform' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment