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
| { | |
| "name": "think-in-react", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "app.js", | |
| "scripts": { | |
| "dev": "webpack-dev-server --devtool source-maps --hot --progress --colors --content-base .", | |
| "build": "set NODE_ENV=production&&webpack -pd" | |
| }, | |
| "browserify": { |
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
| <script type="text/javascript"> | |
| var custom = "myapp://custom_url"; | |
| var alt = "http://mywebsite.com/alternate/content"; | |
| var g_intent = "intent://scan/#Intent;scheme=zxing;package=com.google.zxing.client.android;end"; | |
| var timer; | |
| var heartbeat; | |
| var iframe_timer; | |
| function clearTimers() { | |
| clearTimeout(timer); |
OlderNewer