xiphias
xiphias
I have a partially working solution by rendering the accounts-ui template: Install accounts-ui dropdown ``` bash mrt add accounts-ui-bootstrap-dropdown ``` Add this to the template: ``` html ``` And add...
A quick fix is to disable caching for templates: Put this in app.js configuration (after injecting $httpProvider service) $httpProvider.defaults.headers.common['Cache-Control']='no-cache'
Actually I think this is a missing feature from AngularJS...I looked at the XMLHTTPRequest implementation and they don't support caching. JQuery library has the extra logic for it, so we...
You can try findOne instead of find to get an object instead of an array.