-
Notifications
You must be signed in to change notification settings - Fork 4
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
Pagination #408
Pagination #408
Conversation
font-style: normal; | ||
font-weight: bold; | ||
font-size: 13px; | ||
line-height: 15px; |
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.
please check mobile view
@@ -13,6 +13,8 @@ export class Constants { | |||
static readonly PHONE_LENGTH = 10; | |||
static readonly PROVIDER_ENTITY_TYPE = 1; | |||
static readonly WORKSHOP_ENTITY_TYPE = 2; | |||
static readonly WORKSHOPS_PER_PAGE = 4; |
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.
12?
const currentPage = this.carouselPageList.find((page: PaginationElement) => page.element === this.currentPage.element); | ||
|
||
let isForward: boolean = changes.currentPage.previousValue.element < changes.currentPage.currentValue.element; | ||
if (isForward) { |
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.
those two conditions could be meged
No description provided.