npm v3.10 - ◾
npm install -g npm
# Downgrade to a specific version
npm install -g npm@6
| <!-- | |
| Generated template for the CheckoutPage page. | |
| See http://ionicframework.com/docs/components/#navigation for more info on | |
| Ionic pages and navigation. | |
| --> | |
| <ion-header> | |
| <ion-navbar> | |
| <ion-title>checkout</ion-title> |
| function defer(method) { | |
| if (window.jQuery) | |
| method(); | |
| else | |
| setTimeout(function() { defer(method) }, 50); | |
| } |
| function convertMS( milliseconds ) { | |
| var day, hour, minute, seconds; | |
| seconds = Math.floor(milliseconds / 1000); | |
| minute = Math.floor(seconds / 60); | |
| seconds = seconds % 60; | |
| hour = Math.floor(minute / 60); | |
| minute = minute % 60; | |
| day = Math.floor(hour / 24); | |
| hour = hour % 24; | |
| return { |
| # <type>: (If applied, this commit will...) <subject> (Max 50 char) | |
| # |<---- Using a Maximum Of 50 Characters ---->| | |
| # Explain why this change is being made | |
| # |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
| # Provide links or keys to any relevant tickets, articles or other resources | |
| # Example: Github issue #23 |
npm install -g npm
# Downgrade to a specific version
npm install -g npm@6
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
| /* (320x480) iPhone (Original, 3G, 3GS) */ | |
| @media only screen and (min-device-width: 320px) and (max-device-width: 480px) { | |
| /* insert styles here */ | |
| } | |
| /* (320x480) Smartphone, Portrait */ | |
| @media only screen and (device-width: 320px) and (orientation: portrait) { | |
| /* insert styles here */ | |
| } | |