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
git diff --no-prefix --ignore-space-at-eol | sed -e "s/^diff --git [^[:space:]]*/Index:/" -e "s/^index.*/===================================================================/" > changes.patch |
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
//playing with collapsibles areas | |
$(document).ready(function(){ | |
$("[data-toggle='collapse']").click(function(e){ | |
var $this = $(this); | |
var $icon = $this.find("i[class^='icon-chevron']"); | |
console.log('llega'); | |
if ($icon.hasClass('icon-chevron-right')){ | |
$icon.removeClass('icon-chevron-right').addClass('icon-chevron-down'); | |
} else { | |
$icon.removeClass('icon-chevron-down').addClass('icon-chevron-right'); |
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
[[171108522930776]] | |
[[168456309878025]] | |
[[164413893600463]] | |
[[189637151067601]] | |
[[218595638164996]] | |
[[106043532814443]] | |
[[189637151067601]] | |
[[214457085240151]] | |
[[129627277060203]] | |
[[160723207280093]] |
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
/* Dialogo para confirmar cambios */ | |
$(document).ready(function(){ | |
// Formateamos el botón Diálogo sencillo | |
$('#dialogSencillo').button(); | |
// Damos formato a la Ventana de Diálogo | |
$('#dialogo').dialog({ | |
// Indica si la ventana se abre de forma automática | |
autoOpen: false, | |
// Indica si la ventana es modal | |
modal: true, |
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
{% extends 'base.html' %} | |
{% block titulo %}Agregar o editar nuevos trabajos {% endblock %} | |
{% block css %} | |
<link href='/static/css/south-street/jquery-ui-1.8.16.custom.css' rel='stylesheet'> | |
{% endblock %} | |
{% block javascript %} | |
<script src='/static/js/jquery-1.6.2.min.js'></script> | |
<script src='/static/js/jquery-ui-1.8.16.custom.min.js'></script> | |
<script src='/static/js/jquery.ui.datepicker-es.js'></script> | |
<script src='/static/js/legolax.js'></script> |
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
#-*- coding:utf-8 -*- | |
from Tkinter import * | |
#funciones de procesamiento | |
def procesar(): | |
resultado = peso.get() + altura.get() | |
print resultado | |
#Instancia de la clase Tk | |
ventana = Tk() |
NewerOlder