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.
| var MinimumAmountValidator = Class.create({ | |
| settings: { | |
| "minimum_amount": 1, | |
| "checkbox_id" : null, | |
| "input_id" : null, | |
| "only_integer" : false | |
| }, | |
| initialize: function( settings ){ |
| (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() |
| #!/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 ####### |
| --- | |
| # ^^^ 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. |