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
| gulp build | |
| ./bin/weweb demo/demo20170111/ | |
| cd dist/app | |
| cp -R ./ /Users/IOriens/work/lib-hera/hera/src/main/assets/hera/app/wd55myoaAtOSp8iWjb/source/ |
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
| #!/bin/sh | |
| ## A script used to push local changes to remote repo. | |
| ## Usage: | |
| # ./update.sh | |
| ## or | |
| # ./update.sh "Comments" | |
| message="Just added some code..." |
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
| # Folder view configuration files | |
| .DS_Store | |
| Desktop.ini | |
| # Thumbnail cache files | |
| ._* | |
| Thumbs.db | |
| # Files that might appear on external disks | |
| .Spotlight-V100 |
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 detectPlatform () { | |
| var e = window.navigator.userAgent.toLowerCase() | |
| return /wechatdevtools/.test(e) ? 'wechatdevtools' : /(iphone|ipad)/.test(e) ? 'ios' : /android/.test(e) ? 'android' : void 0 | |
| } |
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
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
| <title>Page Title</title> |