-transition
To expand Browser Prefixes, Type propery name with a leading dash (-) and press TAB or Ctrl + E
/*http://good.co/*/ | |
$(document).ready(function (){ | |
// If menu item has classname "nav-no-click" then return false | |
$('li.nav-no-click > a').click( function() { | |
return false; | |
}); | |
$('#features-rotator-row').find('.features-rotator-item').each(function(index, element) { |
<?php | |
/* | |
DONT FORGET TO DELETE THIS SCRIPT WHEN FINISHED! | |
*/ | |
ini_set( 'display_errors', 1 ); | |
error_reporting( E_ALL ); | |
$from = '[email protected]'; |
Shortcut | Description |
---|---|
Ctrl + Shift + P | Command Palette |
Ctrl + D | Multi Edit : Select the next same matched word |
Alt + F3 | Select all occurences of selected text |
Ctrl + Click | Every place you click will create a cursor to edit |
Ctrl + F then Alt + Enter | Highlight all occurences of selected word and to edit at same time |
/* | |
Wamp => SQL Console => Paste the code belwo | |
*/ | |
SET PASSWORD FOR root@localhost=PASSWORD(''); |
$(document).ready(function(){ | |
function e(){ | |
var e=$(window).height(); | |
$(".banner").css("height",e) | |
} | |
e(),$(window).resize(e)}) |
In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.
For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.