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
/* jshint esnext: true */ | |
import Ember from 'ember'; | |
// When mixed into an Ember.Component class, actions can be explicitly or implicitly delegated to the parent. | |
// In general this makes the most sense for an app-level component, where actions are not mututated as they bubble | |
// up to higher levels. | |
export default Ember.Mixin.create({ | |
// When true, all actions will be implicitly passed on to the parent |
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
<?php | |
/** | |
* Shortcode to go along with my Option Tree | |
* helper functions. See those here: | |
* https://gist.github.com/2627998 | |
* | |
* <samp>[theme_option name="home_text"]</samp> | |
* | |
* @param array Array of attributes passed from the shortcode. | |
* @return string|null |