Skip to content

Instantly share code, notes, and snippets.

@lukasfarina
Last active January 27, 2016 02:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukasfarina/2486a4c7394a8cef067a to your computer and use it in GitHub Desktop.
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.
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