Hello @_______
Have you an online example ? You can try http://codepen.io/ to show us your problem
Don't hesitate to go to the forum http://foundation.zurb.com/forum and close this issue if this problem is solved
| <-- Script tag that will hold jQuery --> | |
| <script id="js-jquery"></script> | |
| <-- Determine if jQuery should be loaded from localStorage or the server --> | |
| <script> | |
| var jqFile; | |
| if ('jqFile' in window.localStorage) { | |
| // 1. The script is already stored | |
| jqFile = window.localStorage.getItem('jqFile'); | |
| } else { |
| <html> | |
| ... | |
| <script id="js-module-lazy"> | |
| /* | |
| JavaScript commented code | |
| */ | |
| </script> | |
| <script> | |
| function lazyLoad(){ |
| brew version wtf-formula | |
| cd /usr/local/Library/Formula | |
| git checkout sha-of-da-commit | |
| brew install wtf-formula |
Hello @_______
Have you an online example ? You can try http://codepen.io/ to show us your problem
Don't hesitate to go to the forum http://foundation.zurb.com/forum and close this issue if this problem is solved
| .is-hidden { | |
| display:none; | |
| } |
| main: | |
| - label: Femme | |
| css_class: m-menu--item-main | |
| submenu: | |
| - entry: Modèle | |
| categories: | |
| - data: "Ballerines et babies" | |
| - data: "Mules & sabots" | |
| - data: "Sandales et nu-pieds" | |
| - data: "Chaussons" |
| // Your validation code will go in there. | |
| // Write your validation functions, and bind events | |
| // in a jQuery DOM ready callback | |
| var EVENTS = 'focusout keyup change'; | |
| var ZIP_CODE_PATTERN = /^\d{5}$/; | |
| var MOBILE_PHONE_PATTERN = /^(0|\+33)[1-9]\d{8}$/; | |
| var EMAIL_PATTERN =/^([^\.@]+)(\.([^@]+))?@([^@]+)\.([^@]+)$/; |
| A git fork is really just a git clone plus a change of ownership. What this does is a git clone plus a change of name, maintaining an upstream link to the source repo so you can integrate changes. | |
| Here's a recipe for duplicating a repo: | |
| git clone username/old_repo new_repo | |
| cd new_repo | |
| git remote rename origin upstream | |
| git create username/new_repo | |
| git push -u origin master |