I hereby claim:
- I am wcurtis on github.
- I am wcurtis (https://keybase.io/wcurtis) on keybase.
- I have a public key ASBw79MYtWw7yhr0f_IF_xgbWMwzr6_rHBbXDWwg9KCqKAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/** | |
* Adds store to components | |
* http://stackoverflow.com/a/18754349/540194 | |
*/ | |
export function initialize(container, application) { | |
application.inject('component', 'store', 'store:main'); | |
} | |
export default { | |
name: 'inject-store', |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
/** | |
* InputTooltip makes it easy to add Bootstrap tooltips | |
* or popovers to your input fields in Ember | |
* | |
* Example Tooltip Usage: | |
* | |
* {{input-tooltip | |
* tooltip_title="I'm a tooltip bro" | |
* tooltip_placement="right" | |
* type="text" |
<?php | |
/** | |
* Lock manager to ensure our cron doesn't run twice at the same time. | |
* | |
* Inspired by the lock mechanism in Mage_Index_Model_Process | |
* | |
* Usage: | |
* | |
* $lock = Mage::getModel('stcore/cron_lock'); |