mixersoft
mixersoft
I'm testing with `ionic2` and I seem to be getting this error on `ImgCache.init()` for `iOS` ``` [Error] ReferenceError: Can't find variable: device runTask (polyfills.js:3:11493) invoke (polyfills.js:3:15172) ``` with `ionic2`...
dooh! forgot `cordova-plugin-device` see: https://github.com/chrisben/imgcache.js/issues/158
try this instead: ``` if ( $Model->recursive > -1 && isset($Model->belongsTo)) { $belongsToModels = array_keys($Model->belongsTo); foreach( $belongsToModels as $belongsTo_alias ){ $queryData['fields'][] = $belongsTo_alias.'.*'; } } ```
The problem is also present when you use both Containable + Permissionable and expect to add fields from Containable. $options = array( 'contain'=>array('Owner.id', 'Owner.username'), 'fields'=>'Group.*', // MUST ADD 'fields' for...
the repo version requires you to include the module, `'ionic-material'`, and the demo version just adds `ionic.material` to the namespace.
I beleive the problem is a BUG, the `tokenStore` key is incorrect, it should be `tokenStore.removeItem('fbAccessToken');` ``` // openfb.js var logoutWindow, token = tokenStore.fbAccessToken; /* Remove token. Will fail silently...
I beleive the problem is a BUG, the `tokenStore` key is incorrect, it should be `tokenStore.removeItem('fbAccessToken');` ``` // openfb.js var logoutWindow, token = tokenStore.fbAccessToken; /* Remove token. Will fail silently...
I had a similar problem, but only if you are using `ion-side-menu` the code was measuring the wrong `headerHeight = activeHeader.offsetHeight;` I had to mod the code to get the...
I'm still not able to get this to work - I can run the app from localhost but not from heroku. However, the API does work just fine. Just to...