saving with title and buttons and forcing

This commit is contained in:
muerwre 2018-08-31 14:33:54 +07:00
parent fc1bac528a
commit 1ecc2d2a92
8 changed files with 98 additions and 21 deletions

View file

@ -129,9 +129,13 @@ export class Sticker {
angle: this.angle,
latlng: this.latlng,
sticker: this.sticker,
})
stopEditing = () => ({
});
stopEditing = () => {
this.element.className = 'sticker-container inactive';
};
startEditing = () => {
this.element.className = 'sticker-container';
};
}