A filter store in the app currently looks like this
fiters: {
...
filters: {
'555pageId': {
"member_region": {
"items": {
"domestic": false,
A filter store in the app currently looks like this
fiters: {
...
filters: {
'555pageId': {
"member_region": {
"items": {
"domestic": false,
let AnimationWrapper = React.createClass({ | |
render() { | |
console.log(this.props.childClassName + ' render'); | |
return this.props.children; | |
}, | |
componentWillAppear (callback) { | |
console.log(this.props.childClassName + ' willappear'); | |
callback(); |
<?php | |
/** | |
* SOURCE https://github.com/ArmedGuy/discourse_sso_php/blob/master/discourse_sso.php | |
* This Discourse_SSO class gets used in the full module below | |
*/ | |
class Discourse_SSO { | |
private $sso_secret; | |
I hereby claim:
To claim this, I am signing this object:
<html> | |
<body> | |
<h1>db.info() test</h1> | |
<p>Using pouchdb-3.1.0</p> | |
<p id="putResult"></p> | |
<p id="getResult"></p> | |
<p id="getInfoPrep"></p> |
The framework for debugging web pages (and phoneGap apps) on Android is finally getting easier.
https://developers.google.com/chrome-developer-tools/docs/remote-debugging
Following the instructions will get you there, but the notes below might help spell out some of the steps. Here's what you need.
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { | |
// no easing, no acceleration | |
linear: function (t) { return t }, | |
// accelerating from zero velocity | |
easeInQuad: function (t) { return t*t }, | |
// decelerating to zero velocity |
var swipeFunc = { | |
touches : { | |
"touchstart": {"x":-1, "y":-1}, | |
"touchmove" : {"x":-1, "y":-1}, | |
"touchend" : false, | |
"direction" : "undetermined" | |
}, | |
touchHandler: function(event) { | |
var touch; | |
if (typeof event !== 'undefined'){ |
/* | |
* This is an example build file that demonstrates how to use the build system for | |
* require.js. | |
* | |
* copied from here: https://github.com/jrburke/r.js/blob/master/build/example.build.js | |
* THIS BUILD FILE WILL NOT WORK. It is referencing paths that probably | |
* do not exist on your machine. Just use it as a guide. | |
* | |
* | |
*/ |
<?php | |
/** | |
* Duplicate this file as many times as you would like, just be sure to change the | |
* Empty_Widget class name to a custom name of your choice. Have fun! redrokk.com | |
* | |
* Plugin Name: Empty Widget | |
* Description: Single Widget Class handles all of the widget responsibility, all that you need to do is create the html. Just use Find/Replace on the Contact_RedRokk_Widget keyword to rebrand this class for your needs. | |
* Author: RedRokk Interactive Media | |
* Version: 1.0.0 | |
* Author URI: http://www.redrokk.com |