Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
| // -------------------------------------------------- | |
| // Flexbox LESS mixins | |
| // The spec: http://www.w3.org/TR/css3-flexbox | |
| // -------------------------------------------------- | |
| // Flexbox display | |
| // flex or inline-flex | |
| .flex-display(@display: flex) { | |
| display: ~"-webkit-@{display}"; | |
| display: ~"-ms-@{display}box"; // IE10 uses -ms-flexbox |
Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="width=320; user-scalable=yes" /> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
| <title>PhoneGap</title> | |
| <script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script> | |
| <script type="text/javascript" charset="utf-8" src="video.js"></script> | |
| <script type="text/javascript"> | |
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> | |
| <title>D3: Subselection Example</title> | |
| <script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script> | |
| <style type="text/css"> | |
| body { | |
| font: 13px sans-serif; |
| var fs = require('fs'), | |
| http = require('http'), | |
| https = require('https'), | |
| httpProxy = require('http-proxy'); | |
| var options = { | |
| https: { | |
| key: fs.readFileSync('key.pem', 'utf8'), | |
| cert: fs.readFileSync('cert.pem', 'utf8') | |
| } |