Skip to content

Instantly share code, notes, and snippets.

@mjltlh
mjltlh / 0_reuse_code.js
Last active August 29, 2015 14:26
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@mjltlh
mjltlh / gist:aa5efbc8a6ea49bcf283
Created September 16, 2014 21:03
Gravity style kill
//WP Enqueue scripts handler
public function WPEnqueueScriptsHandler(){
//if(!is_single() && SKGravityOptions::getInstance()->isInPageShortcode()==true){
//$this->loadFrontendStyles();
//}
if(is_single()){
if(GRP_POST_SLUG==get_post_type()){
$this->loadFrontendStyles();
}
}