|
|
@@ -405,7 +405,7 @@ public class ContentsPresenter extends ContentsBasePresenter<ContentsModel, ICon
|
|
|
* @param navigationBar
|
|
|
*/
|
|
|
public void onNavigationClickLike(NavigationBar navigationBar) {
|
|
|
- if(!model.getCurrentItem().isLiked()) {
|
|
|
+ if (!model.getCurrentItem().isLiked()) {
|
|
|
googleAnalyticsHelper.sendGA(GoogleAnalyticsHelper.Category.LIKE, model.getFirstItem().getTitle());
|
|
|
}
|
|
|
model.updateLiked();
|
|
|
@@ -417,7 +417,7 @@ public class ContentsPresenter extends ContentsBasePresenter<ContentsModel, ICon
|
|
|
* @param navigationBar
|
|
|
*/
|
|
|
public void onNavigationClickBookmark(NavigationBar navigationBar) {
|
|
|
- if(!model.getCurrentItem().isBookmarked()) {
|
|
|
+ if (!model.getCurrentItem().isBookmarked()) {
|
|
|
googleAnalyticsHelper.sendGA(GoogleAnalyticsHelper.Category.BOOKMARK, model.getFirstItem().getTitle(), model.getCurrentItem().getTitle());
|
|
|
}
|
|
|
model.updateBookmarked();
|
|
|
@@ -524,6 +524,7 @@ public class ContentsPresenter extends ContentsBasePresenter<ContentsModel, ICon
|
|
|
private void showMoreInfoPopup(int index) {
|
|
|
if (null == dialogBase) {
|
|
|
dialogBase = new DialogBuilder<MoreInfoDialog, ICustomDialogListener>(getFragmentManager(), DialogID.MORE_INFO)
|
|
|
+ .resize(getScreenSizeHelper())
|
|
|
.listener(new ICustomDialogListener<MoreInfoDialog>() {
|
|
|
|
|
|
@Override
|