1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-30 02:29:43 +02:00

record pin event, remove uppercase CSS, reduce AJAX calls

This commit is contained in:
Harvey Kandola 2016-11-22 10:05:32 -08:00
parent 532a8076f5
commit b2769efbd4
4 changed files with 19 additions and 2 deletions

View file

@ -100,6 +100,8 @@ export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
},
unpin() {
this.audit.record('unpinned-space');
this.get('pinned').unpinItem(this.get('pinState.pinId')).then(() => {
this.set('pinState.isPinned', false);
this.set('pinState.pinId', '');
@ -119,6 +121,8 @@ export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
return false;
}
this.audit.record('pinned-space');
this.get('pinned').pinItem(pin).then((pin) => {
this.set('pinState.isPinned', true);
this.set('pinState.pinId', pin.get('id'));
@ -126,6 +130,6 @@ export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
});
return true;
}
}
}
});