Updated December 23rd, 2013: These lists were gathered from a Windows 7 virtual machine on a MacBook Pro.
- js
- flexbox
- canvas
- canvastext
<?php if (isset ($_GET["preview"])) { ?> | |
"Preview" exsists as a URL parameter | |
<? } ?> | |
<?php if (!isset ($_GET["preview"])) { ?> | |
"Preview" does not exsist as a URL parameter | |
<? } ?> | |
<?php if ($_GET["preview"] == "true") { ?> |
module.exports = function(grunt) { | |
"use strict"; | |
// ------------------------------------------------------------------------- | |
// #### Load plugins as needed #### | |
// Using a 'just in time' approach -- meaning: only load plugins when they | |
// are needed -- this will automatically find, then load, any and all | |
// plugins that are needed by the task currently being executed. It will | |
// scan the devDependencies object, in package.json, and match any of the |
sudo vim /etc/hosts
i
to edit the file192.168.10.10 [repo-name].test
on a new line:wq
, then enter
, to write and quit vimvim ~/Homestead/Homestead.yaml
i
to edit the file:wq
, then enter
, to write and quit vim/_docs/project
)<head> … </head>
// Use #1: <img> element using src and srcset: | |
// <img data-lazy-srcset="/path/to/image-2x.jpg 2x" | |
// data-lazy-src="/path/to/image-1x.jpg" | |
// alt="TODO" width="TODO" height="TODO" loading="lazy" /> | |
// | |
// Use #2: <img> element using src, srcset, and sizes: | |
// <img data-lazy-srcset="your srcset list here" | |
// data-lazy-src="/path/to/image.jpg" | |
// sizes="your sizes list here" | |
// alt="TODO" width="TODO" height="TODO" loading="lazy" /> |