⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains 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
// the power of dom utilities and selector engines | |
// $('table.projects tr:even').addClass('even-row'); | |
var slice = Array.prototype.slice, | |
toArray = function (obj) { | |
return Array.prototype.slice.call(obj, 0) | |
} | |
var tables = toArray(document.querySelectorAll('table.projects')) |