from this
import Head from '~components/Commons/Head';
require('~images/test.jpg')
to this
| ... | |
| <permission | |
| android:name="android.permission.INTERACT_ACROSS_USERS_FULL" | |
| android:protectionLevel="signature" /> | |
| ... | |
| <activity android:name=".UnlockScreenActivity" /> |
from this
import Head from '~components/Commons/Head';
require('~images/test.jpg')
to this
| // extension for jQuery | |
| (function (root) { | |
| if (root.Enumerable == null) { | |
| throw new Error("can't find Enumerable. linq.jquery.js must load after linq.js"); | |
| } | |
| if (root.jQuery == null) { | |
| throw new Error("can't find jQuery. linq.jquery.js must load after jQuery"); | |
| } |
| // http://css3.bradshawenterprises.com/blog/why-sass/ | |
| // _constants.scss | |
| $brand-color: rgb(255,0,0); | |
| $accent-color: darken($brand-color, 10); // That is, 10% darker than the brand-color. | |
| $body-font: "Helvetica Neue", Arial, sans-serif; | |
| $header-font: "Segoe UI", "Myriad Pro", $body-font; | |
| $width: 960px; |