diff --git a/src/app/advertiser/pages-popularity/pages-popularity.component.html b/src/app/advertiser/pages-popularity/pages-popularity.component.html
index 30fbd44..62ae0e1 100644
--- a/src/app/advertiser/pages-popularity/pages-popularity.component.html
+++ b/src/app/advertiser/pages-popularity/pages-popularity.component.html
@@ -10,13 +10,13 @@
-
Filtre
+
Filtre
-
+
@@ -76,10 +76,11 @@
semaine
mois
-
+
+
-
+
0">
{{coupleNameViews.name}},
@@ -87,5 +88,7 @@
{{coupleNameViews.name}}
+
+
diff --git a/src/app/advertiser/pages-popularity/pages-popularity.component.scss b/src/app/advertiser/pages-popularity/pages-popularity.component.scss
index 6030311..00fb9e3 100644
--- a/src/app/advertiser/pages-popularity/pages-popularity.component.scss
+++ b/src/app/advertiser/pages-popularity/pages-popularity.component.scss
@@ -39,6 +39,12 @@ input {
font-weight: bold;
}
+.btnToutSelectionner {
+ font-size: small;
+}
+.btnToutDeselectionner {
+ font-size: small;
+}
// -------------------------------------------------------------------------
diff --git a/src/app/advertiser/pages-popularity/pages-popularity.component.ts b/src/app/advertiser/pages-popularity/pages-popularity.component.ts
index 29f6811..991b8fa 100644
--- a/src/app/advertiser/pages-popularity/pages-popularity.component.ts
+++ b/src/app/advertiser/pages-popularity/pages-popularity.component.ts
@@ -294,4 +294,15 @@ export class PagesPopularityComponent implements OnInit
return tabDate;
}
+
+ onSelectAll(): void
+ {
+ this.formControl = new FormControl(this.allCoupleNameViews);
+ }
+
+ onDeSelectAll(): void
+ {
+ this.formControl = new FormControl([]);
+ }
+
}
diff --git a/src/app/user/watching/page-watching-video/page-watching-video.component.ts b/src/app/user/watching/page-watching-video/page-watching-video.component.ts
index d537eae..b632ac6 100644
--- a/src/app/user/watching/page-watching-video/page-watching-video.component.ts
+++ b/src/app/user/watching/page-watching-video/page-watching-video.component.ts
@@ -138,11 +138,11 @@ export class PageWatchingVideoComponent implements OnInit
// style
if(this.from === 'search' || this.from === 'history') {
- this.containerStyle = "margin: 0 auto; width: 64vw;"
+ this.containerStyle = "margin: 0 auto; width: 64vw;" ;
this.iframeStyle = "width: 64vw; height: 60vh;" ;
}
else {
- this.containerStyle = "margin: 0 auto; width: 48vw;"
+ this.containerStyle = "margin: 0 auto; width: 48vw;" ;
this.iframeStyle = "width: 48vw; height: 45vh;" ;
}
}