mixersoft

Results 4 issues of mixersoft

example: $this->Model->read(null, $id) fix: ``` if (is_array($queryData['fields'])) { $queryData['fields'][] = "{$alias}.*"; } elseif(!empty($queryData['fields'])) { $queryData['fields'] = array( $queryData['fields'], "{$alias}.*" ); } else { $queryData['fields'] = array( "{$Model->alias}.*", "{$alias}.*" ); ```...

headerHeight was getting a value from the wrong element when using `ion-side-menu` ``` headerHeight = activeHeader.offsetHeight; ```

see: https://forum.ionicframework.com/t/problem-one-mean-ionic-2-todo-app-on-heroku/61985 Everything works from `localhost:8080` but only the Rest API works from heroku. Are you supposed to be able to serve the app from heroku in this tutorial? or...

where can I get the code that you are using in the online demo at http://ionicmaterial.com/demo/demo/www/index.html#/app/profil - it is not the same as the code in the github repo. ```...