-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Frontend rewrite #131
base: develop
Are you sure you want to change the base?
Frontend rewrite #131
Conversation
creeDocker image is available as |
private MAX_IMAGES_DISPLAYED: number = 15; | ||
private firstImageDisplayed: number = 0; | ||
|
||
public nextButtonEnabled: boolean = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not a good default value if there is only one page (however, this is currently also a problem with the old frontend)
selectedLink: string; | ||
public selectedLink: string; | ||
|
||
public previewVisible: boolean = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public previewVisible: boolean = true; | |
public previewVisible: boolean = false; |
public displayImage; | ||
public selectedLink: string; | ||
|
||
public previewVisible: boolean = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public previewVisible: boolean = true; | |
public previewVisible: boolean = false; |
} | ||
} | ||
|
||
enum TransformationType { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can think about moving those classes into separate file(s)
No description provided.