Install Package Control for easy package management.
- Open the console with
Ctrl+`
- Paste in the following:
$(function() { | |
var resizeEnd; | |
$(window).on('resize', function() { | |
clearTimeout(resizeEnd); | |
resizeEnd = setTimeout(function() { | |
$(window).trigger('resize-end'); | |
}, 100); | |
}); | |
}); |
Install Package Control for easy package management.
Ctrl+`
<?php | |
/* | |
One wp-config for local development to staging to production. | |
*/ | |
// Define Environments | |
$environments = array( |
# Ignore everything in this directory | |
* | |
# Except this file | |
!.gitignore |