- https://html.spec.whatwg.org/multipage/interaction.html#focus
- https://www.w3.org/TR/2016/REC-html51-20161101/editing.html#can-be-focused
- https://www.oreilly.com/ideas/proposing-css-input-modality
- https://www.sitepoint.com/learning-to-focus/
- https://egghead.io/lessons/css-focus-management-using-css-html-and-javascript
- https://youtu.be/ilj2P5-5CjI?list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g
- https://drafts.csswg.org/selectors-4/#the-focus-pseudo
- https://www.w3.org/TR/WCAG21/#focus-visible
- http://webaim.org/techniques/keyboard/
- http://www.outlinenone.com/#test2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="pug"> | |
li(@click='$store.commit("UPDATE_SIDE_NAV_ACTIVE_ITEM", $el)') | |
slot | |
</template> | |
<script> | |
export default { | |
data () { | |
return { | |
provideData: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Android | |
platforms/android/assets/www | |
platforms/android/bin/ | |
platforms/android/gen/ | |
platforms/android/res/xml/config.xml | |
# iOS | |
platforms/ios/build/ | |
platforms/ios/CordovaLib/build/ | |
platforms/ios/www |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const arr1 = [1,2,3] | |
const arr2 = [4,5,6] | |
const arr3 = [...arr1, ...arr2] //arr3 ==> [1,2,3,4,5,6] |
I freaking love working with technologies like Grunt and Gulp, and wanted to share how to get my current EE front-end workflow set up. With a few tweaks, this can also be used with virtually any other sites (I've used it with Laravel, static sites, Craft, etc).
- If Node is not yet installed on the machine, it will need to be installed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# Based on: | |
# jQuery JavaScript Library v1.4.2 | |
# http://jquery.com/ | |
# | |
# Copyright 2010, John Resig | |
# Dual licensed under the MIT or GPL Version 2 licenses. | |
# http://jquery.org/license | |
### |
- Make sure you have yo installed:
npm install -g yo
- Run:
yo webapp
- Install grunt-contrib-jade:
npm install grunt-contrib-jade --save-dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Test | |
*/ | |
class My_Like_Button { | |
function __construct() | |
{ | |
$this->hooks(); | |
} |
Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications
like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.
open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html
NewerOlder