11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
|
import { tracked } from "@glimmer/tracking";
|
||
|
import Service from "@ember/service";
|
||
|
|
||
|
export default class ImageCaptionPopup extends Service {
|
||
|
@tracked showPopup = false;
|
||
|
@tracked imageIndex = null;
|
||
|
@tracked imageSrc = null;
|
||
|
@tracked newCaption = null;
|
||
|
@tracked loading = false;
|
||
|
}
|