var a = [];
a.push(["Nombre", "Apellido", "Edad"]);
a.push(["Juan", "Lopez", 35]);
a.push(["Gas", "De la Llana", 32]);
a.push(["Cristian", "Bertelegni", 33]);
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
| from fabric.api import * | |
| from fabric.colors import green, red | |
| env.hosts = [ 'localhost'] | |
| def deploy(): | |
| path = "/path/to/root/app/" | |
| print(red("Beginning Deploy:")) |
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
| jQuery(function($) { | |
| $('form[data-async]').live('submit', function(event) { | |
| var $form = $(this); | |
| var $target = $($form.attr('data-target')); | |
| $.ajax({ | |
| type: $form.attr('method'), | |
| url: $form.attr('action'), | |
| data: $form.serialize(), |
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
| (function($){ | |
| // tooltip | |
| $.tooltip = function (objetoOver, tooltip, callBack){ | |
| // objetoOver | |
| // tooltip | |
| // callBack | |
| var postion={ left:0, top:0, parentW: objetoOver.parent().width(), parentH: objetoOver.parent().height() }; | |
| objetoOver.hover(function(e){ | |
| if(callBack) |