i try to clear user cookie in my ember app. and the cookie still there...
export default Service.extend({
cookies: Ember.inject.service(),
removeCookies() {
let cookieService = this.get('cookies');
cookieService.clear('user');
}
});
its work in chrome. but not in firefox..
whats wrong..