Warning
These guidelines haven't been updated since 2016. Learn more…
Table of contents
"use-strict"; | |
const http2 = require("http2"); | |
const fs = require("fs"); | |
const certKeyPath = "/Users/username/project/certificates/private.key.pem"; | |
const certPath = "/Users/username/project/certificates/public.crt.pem"; | |
const applicationBundleID = "com.companyname.myAppName"; | |
const pushServerEndpoint = "https://api.push.apple.com"; | |
const appSharedSecret = "8234e6db4d244cbfa25bc98a777a5486"; | |
const storeEnvironment = "sandbox"; |
{% comment %} | |
Instructions: | |
- Create a blank page called 'Google Base Product Feed'and save it | |
- Open that page for editing and select 'page.google-feed' from the page template selector | |
- Add a brief site description to the meta-shop-description snippet | |
- The feed url should now be available at http://www.yoursite.com/pages/google-base-product-feed | |
- validate your field at http://validator.w3.org/feed/ | |
- when ready, submit your feed at http://base.google.com |
'use strict'; | |
/** | |
* Makes an element draggable. | |
* | |
* @param {HTMLElement} element - The element. | |
*/ | |
function draggable(element) { | |
var isMouseDown = false; |
Warning
These guidelines haven't been updated since 2016. Learn more…
Table of contents