So this is my second post. How are you? That's great!
Until next time.
{ | |
"name": "FLYPPR", | |
"short_name": "FLYPPR", | |
"description": "Draw and animate flipbooks!", | |
"icons": [{"src": "https://lucusp.github.io/flyppr/dev/flyppr.png", "sizes": "32x32", "type": "image/png" }], | |
"display": "standalone", | |
"orientation": "landscape-secondary", | |
"start_url": "/", | |
"background_color": "#14b5ff", | |
"theme_color": "#14b5ff" |
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |
<!doctype html> | |
<html> | |
<head> | |
<!-- Run in full-screen mode. --> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<!-- Make the status bar black with white text. --> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |