For push menus.
.arrow-right can be swapped for .arrow-left depending on what side the menu comes in from.
Forked from Louise Foster's Pen AngularJS Material design menu toggle.
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |
#!/bin/bash | |
####### Update all this variables ####### | |
repo_dir="rr-huntsville-site" | |
site_dir="wordpress" | |
branch="master" | |
# Update with directories relative to wp-content | |
pull_dirs="themes uploads" | |
push_dirs="themes uploads plugins" | |
####### Stop updating variables ####### |
(function($, $$){ | |
$('fill_contact').observe('click', function(e) { | |
var name = $('billing_name').getValue() | |
, billing_address = $('billing_address').getValue() | |
, billing_city = $('billing_city').getValue() | |
, billing_state = $('billing_state').getValue() | |
, billing_zip = $('billing_zip').getValue() | |
, billing_phone = $('billing_phone').getValue() |
var MinimumAmountValidator = Class.create({ | |
settings: { | |
"minimum_amount": 1, | |
"checkbox_id" : null, | |
"input_id" : null, | |
"only_integer" : false | |
}, | |
initialize: function( settings ){ |
The ADB excecutable lives in: | |
[path-to-android-sdk]/platform-tools/ | |
./adb -e logcat | grep TiAPI | |
or | |
./adb -d logcat | grep TiAPI |
##Acerca de Nosotros
Somos una empresa basada en Texas con oficinas en la ciudad de Puebla.
Nos dedicamos, por un lado, a dar servicio a "asociaciones sin fines de lucro" en los EE. UU. realizando sitios, micro sitios, campañas de correo y recaudación de donativos a través de internet.
Por otro lado, tenemos un equipo que se encarga 100% de desarrollar junto con un equipo en los EE. UU. la plataforma de recaudación de donativos a través de internet.
Si quieren saber mas sobre nosotros visiten: http://digizent.com.
This gist assumes:
This gist assumes:
$('#selector').on('keydown', onlyNumber); | |
function onlyNumber(event){ | |
// Allow: backspace, delete, tab, escape, and enter | |
if ( event.keyCode == 46 || event.keyCode == 8 || event.keyCode == 9 || event.keyCode == 27 || event.keyCode == 13 || | |
// Allow: Ctrl+A | |
(event.keyCode == 65 && event.ctrlKey === true) || | |
// Allow: home, end, left, right | |
(event.keyCode >= 35 && event.keyCode <= 39) || | |
// Allow point |