@saooti/octopus-sdk 30.0.15 → 30.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/README.md +5 -1
  2. package/package.json +2 -2
  3. package/src/assets/bootstrap-diff.scss +3 -0
  4. package/src/assets/form.scss +3 -0
  5. package/src/assets/share.scss +0 -3
  6. package/src/components/display/categories/CategoryChooser.vue +1 -1
  7. package/src/components/display/categories/CategoryFilter.vue +1 -1
  8. package/src/components/display/categories/CategoryList.vue +1 -1
  9. package/src/components/display/comments/CommentItem.vue +1 -1
  10. package/src/components/display/comments/CommentList.vue +1 -1
  11. package/src/components/display/comments/CommentSection.vue +1 -1
  12. package/src/components/display/edit/EditCommentBox.vue +4 -4
  13. package/src/components/display/emission/EmissionChooser.vue +1 -1
  14. package/src/components/display/emission/EmissionInlineList.vue +2 -2
  15. package/src/components/display/emission/EmissionItem.vue +1 -1
  16. package/src/components/display/emission/EmissionList.vue +1 -1
  17. package/src/components/display/emission/EmissionPlayerItem.vue +2 -2
  18. package/src/components/display/filter/AdvancedSearch.vue +1 -1
  19. package/src/components/display/filter/RubriqueChoice.vue +1 -1
  20. package/src/components/display/live/LiveHorizontalList.vue +1 -1
  21. package/src/components/display/live/LiveItem.vue +1 -1
  22. package/src/components/display/live/LiveList.vue +3 -3
  23. package/src/components/display/organisation/OrganisationChooser.vue +1 -1
  24. package/src/components/display/organisation/OrganisationChooserLight.vue +1 -1
  25. package/src/components/display/participant/ParticipantItem.vue +1 -1
  26. package/src/components/display/participant/ParticipantList.vue +1 -1
  27. package/src/components/display/playlist/PlaylistItem.vue +1 -1
  28. package/src/components/display/playlist/PlaylistList.vue +1 -1
  29. package/src/components/display/playlist/PodcastList.vue +1 -1
  30. package/src/components/display/podcasts/AnimatorsItem.vue +1 -1
  31. package/src/components/display/podcasts/ParticipantDescription.vue +2 -2
  32. package/src/components/display/podcasts/PodcastImage.vue +4 -4
  33. package/src/components/display/podcasts/PodcastInlineList.vue +2 -2
  34. package/src/components/display/podcasts/PodcastList.vue +1 -1
  35. package/src/components/display/rubriques/RubriqueChooser.vue +1 -1
  36. package/src/components/display/rubriques/RubriqueList.vue +1 -1
  37. package/src/components/display/sharing/PlayerParameters.vue +2 -2
  38. package/src/components/display/sharing/ShareButtons.vue +1 -10
  39. package/src/components/display/sharing/ShareDistribution.vue +1 -1
  40. package/src/components/display/sharing/SharePlayerTypes.vue +1 -1
  41. package/src/components/display/sharing/SubscribeButtons.vue +9 -9
  42. package/src/components/form/ClassicSearch.vue +1 -1
  43. package/src/components/misc/Footer.vue +1 -1
  44. package/src/components/misc/HomeDropdown.vue +1 -1
  45. package/src/components/misc/PlayerButtons.vue +2 -2
  46. package/src/components/misc/TopBar.vue +2 -2
  47. package/src/components/misc/modal/ClipboardModal.vue +2 -2
  48. package/src/components/misc/modal/MessageModal.vue +1 -1
  49. package/src/components/misc/modal/NewsletterModal.vue +4 -4
  50. package/src/components/misc/modal/QrCodeModal.vue +1 -1
  51. package/src/components/misc/modal/ShareModalPlayer.vue +1 -1
  52. package/src/components/pages/Participant.vue +0 -1
package/README.md CHANGED
@@ -512,4 +512,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
512
512
  * 30.0.12 Export ClasicLoading
513
513
  * 30.0.13 Améliorations css
514
514
  * 30.0.14 Améliorations css
515
- * 30.0.15 Améliorations css
515
+ * 30.0.15 Améliorations css
516
+ * 30.0.16 Change Aria-Label in title
517
+ * 30.0.17 Oups
518
+ * 30.0.18 Responsive select
519
+ * 30.0.19 Mise à jour Api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.15",
3
+ "version": "30.0.19",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -15,7 +15,7 @@
15
15
  "main": "./dist/octopus.common.js",
16
16
  "dependencies": {
17
17
  "@popperjs/core": "^2.11.0",
18
- "@saooti/octopus-api": "^0.30.2",
18
+ "@saooti/octopus-api": "^0.30.3",
19
19
  "@vue/cli": "^5.0.0-rc.1",
20
20
  "@vue/compat": "^3.2.26",
21
21
  "axios": "^0.24.0",
@@ -262,6 +262,9 @@
262
262
  padding: 1rem;
263
263
  align-items: center;
264
264
  }
265
+ .bg-secondary{
266
+ background: #eee !important;
267
+ }
265
268
  }
266
269
 
267
270
 
@@ -69,4 +69,7 @@
69
69
  }
70
70
  }
71
71
  }
72
+ .classic-select select {
73
+ width: 100%;
74
+ }
72
75
  }
@@ -18,9 +18,6 @@
18
18
  border: 0;
19
19
  background: #f3f3f3;
20
20
  }
21
- @media (max-width: 450px) {
22
- margin: 0.5rem auto 0;
23
- }
24
21
  }
25
22
  .category-rubrique-item-plus {
26
23
  display: flex;
@@ -6,7 +6,7 @@
6
6
  <label
7
7
  :for="id"
8
8
  class="d-inline"
9
- aria-label="select category"
9
+ title="select category"
10
10
  />
11
11
  <VueMultiselect
12
12
  :id="id"
@@ -2,7 +2,7 @@
2
2
  <div v-if="isDisplay">
3
3
  <nav
4
4
  v-if="categoryFilter || rubriqueFilter.length"
5
- aria-label="breadcrumb"
5
+ title="breadcrumb"
6
6
  >
7
7
  <ol class="breadcrumb">
8
8
  <li class="breadcrumb-item">
@@ -22,7 +22,7 @@
22
22
  class="btn dropdown-toggle category-rubrique-item-plus dropdown-toggle-no-caret saooti-plus"
23
23
  data-bs-toggle="dropdown"
24
24
  aria-expanded="false"
25
- :aria-label="$t('See more')"
25
+ :title="$t('See more')"
26
26
  />
27
27
  <ul class="dropdown-menu dropdown-menu-right px-4">
28
28
  <div
@@ -149,7 +149,7 @@
149
149
  </div>
150
150
  <div
151
151
  :id="'commentItemDetail'+comment.comId"
152
- :aria-labelledby="'commentItem'+comment.comId"
152
+ :titleledby="'commentItem'+comment.comId"
153
153
  >
154
154
  <CommentInput
155
155
  v-if="!isFlat || (isFlat && !comment.commentIdReferer) && collapseVisible"
@@ -39,7 +39,7 @@
39
39
  class="btn btn-primary mt-2"
40
40
  :class="comId ? 'align-self-start' : 'align-self-center'"
41
41
  :disabled="inFetching"
42
- :aria-label="$t('See more comments')"
42
+ :title="$t('See more comments')"
43
43
  @click="displayMore"
44
44
  >
45
45
  {{ $t('See more comments') }}
@@ -17,7 +17,7 @@
17
17
  </h2>
18
18
  <button
19
19
  v-if="!isLive"
20
- :aria-label="$t('Refresh')"
20
+ :title="$t('Refresh')"
21
21
  class="saooti-refresh-stud btn btn-reload primary-color"
22
22
  @click="reloadComments"
23
23
  />
@@ -2,24 +2,24 @@
2
2
  <div class="d-flex">
3
3
  <button
4
4
  class="btn btn-comment-edit saooti-edit-bounty"
5
- aria-label="edit"
5
+ title="edit"
6
6
  @click="editComment"
7
7
  />
8
8
  <button
9
9
  v-if="'Pending' === comment.status || 'Invalid' === comment.status"
10
10
  class="btn btn-comment-edit saooti-valid-stud"
11
- aria-label="valid"
11
+ title="valid"
12
12
  @click="validComment"
13
13
  />
14
14
  <button
15
15
  v-if="'Pending' === comment.status || 'Valid' === comment.status"
16
16
  class="btn btn-comment-edit saooti-cross"
17
- aria-label="invalid"
17
+ title="invalid"
18
18
  @click="invalidComment"
19
19
  />
20
20
  <button
21
21
  class="btn btn-comment-edit saooti-bin"
22
- aria-label="delete"
22
+ title="delete"
23
23
  @click="deleteComment"
24
24
  />
25
25
  </div>
@@ -6,7 +6,7 @@
6
6
  <label
7
7
  for="emissionChooser"
8
8
  class="d-inline"
9
- aria-label="select emission"
9
+ title="select emission"
10
10
  />
11
11
  <VueMultiselect
12
12
  id="emissionChooser"
@@ -8,7 +8,7 @@
8
8
  <button
9
9
  class="btn btn-arrow"
10
10
  :class="{ disabled: !previousAvailable }"
11
- :aria-label="$t('Display previous')"
11
+ :title="$t('Display previous')"
12
12
  @click="displayPrevious()"
13
13
  >
14
14
  <div class="saooti-arrow-left2" />
@@ -16,7 +16,7 @@
16
16
  <button
17
17
  class="btn btn-arrow"
18
18
  :class="{ disabled: !nextAvailable }"
19
- :aria-label="$t('Display next')"
19
+ :title="$t('Display next')"
20
20
  @click="displayNext()"
21
21
  >
22
22
  <div class="saooti-arrow-right2" />
@@ -8,7 +8,7 @@
8
8
  params: { emissionId: emission.emissionId },
9
9
  query: { productor: $store.state.filter.organisationId },
10
10
  }"
11
- :aria-label="$t('Emission')"
11
+ :title="$t('Emission')"
12
12
  class="d-flex text-dark"
13
13
  >
14
14
  <div
@@ -43,7 +43,7 @@
43
43
  class="btn"
44
44
  :class="buttonPlus ? 'btn-link-plus' : 'btn-more'"
45
45
  :disabled="loading"
46
- :aria-label="$t('See more')"
46
+ :title="$t('See more')"
47
47
  @click="fetchContent(false)"
48
48
  >
49
49
  <template v-if="buttonPlus">
@@ -87,7 +87,7 @@
87
87
  >
88
88
  <div
89
89
  class="text-light saooti-play2-bounty"
90
- :aria-label="$t('Play')"
90
+ :title="$t('Play')"
91
91
  />
92
92
  </div>
93
93
  <div
@@ -97,7 +97,7 @@
97
97
  >
98
98
  <div
99
99
  class="text-light saooti-pause-bounty"
100
- :aria-label="$t('Pause')"
100
+ :title="$t('Pause')"
101
101
  />
102
102
  </div>
103
103
  </div>
@@ -116,7 +116,7 @@
116
116
  </div>
117
117
  <ClassicRadio
118
118
  v-model:textInit="sort"
119
- id-select="sort-radio"
119
+ id-radio="sort-radio"
120
120
  :options="isSearchBar? [{title:$t('Sort score'), value:'SCORE'},
121
121
  {title:$t('Sort last'), value:isEmission?'LAST_PODCAST_DESC':'DATE'},
122
122
  {title:$t('Sort name'), value:'NAME'}]:
@@ -37,7 +37,7 @@
37
37
  <button
38
38
  v-if="index"
39
39
  class="btn admin-button ms-1 saooti-bin"
40
- aria-label="delete"
40
+ title="delete"
41
41
  @click="deleteRubriquage"
42
42
  />
43
43
  </div>
@@ -18,7 +18,7 @@
18
18
  class="btn"
19
19
  :class="buttonPlus ? 'btn-link-plus mt-3' : 'btn-more'"
20
20
  :disabled="inFetching"
21
- :aria-label="$t('See more')"
21
+ :title="$t('See more')"
22
22
  @click="displayMore"
23
23
  >
24
24
  <template v-if="buttonPlus">
@@ -86,7 +86,7 @@
86
86
  <router-link
87
87
  v-for="animator in live.animators"
88
88
  :key="animator.participantId"
89
- :aria-label="$t('Participant')"
89
+ :title="$t('Participant')"
90
90
  class="fw-bold"
91
91
  :to="{
92
92
  name: 'participant',
@@ -12,12 +12,12 @@
12
12
  {{ displayNextLiveMessage }}
13
13
  </h3>
14
14
  </div>
15
- <div
15
+ <template
16
16
  v-for="(live, indexLive) in livesArray"
17
17
  :key="live.status"
18
18
  >
19
19
  <template v-if="live.lives.length">
20
- <hr>
20
+ <hr class="w-100">
21
21
  <p class="live-list-category">
22
22
  {{ live.title }}
23
23
  </p>
@@ -30,7 +30,7 @@
30
30
  @deleteItem="deleteLive(indexLive, $event)"
31
31
  />
32
32
  </template>
33
- </div>
33
+ </template>
34
34
  </div>
35
35
  </template>
36
36
 
@@ -7,7 +7,7 @@
7
7
  <label
8
8
  for="organisationChooser"
9
9
  class="d-inline"
10
- aria-label="select productor"
10
+ title="select productor"
11
11
  />
12
12
  <VueMultiselect
13
13
  id="organisationChooser"
@@ -20,7 +20,7 @@
20
20
  <label
21
21
  :for="'organisation_chooser_light' + page"
22
22
  class="d-inline"
23
- :aria-label="$t('select productor')"
23
+ :title="$t('select productor')"
24
24
  />
25
25
  </div>
26
26
  </template>
@@ -10,7 +10,7 @@
10
10
  query: { productor: $store.state.filter.organisationId },
11
11
  }"
12
12
  class="mt-3 text-dark"
13
- :aria-label="$t('Participant')"
13
+ :title="$t('Participant')"
14
14
  >
15
15
  <div
16
16
  class="img-box-circle"
@@ -24,7 +24,7 @@
24
24
  <button
25
25
  v-show="!allFetched"
26
26
  class="btn btn-more saooti-plus"
27
- :aria-label="$t('See more')"
27
+ :title="$t('See more')"
28
28
  :disabled="loading"
29
29
  @click="fetchContent(false)"
30
30
  />
@@ -9,7 +9,7 @@
9
9
  params: { playlistId: playlist.playlistId },
10
10
  query: { productor: $store.state.filter.organisationId },
11
11
  }"
12
- :aria-label="$t('Playlist')"
12
+ :title="$t('Playlist')"
13
13
  class="text-dark"
14
14
  >
15
15
  <div
@@ -21,7 +21,7 @@
21
21
  class="btn"
22
22
  :class="buttonPlus ? 'btn-link-plus':'btn-more'"
23
23
  :disabled="inFetching"
24
- :aria-label="$t('See more')"
24
+ :title="$t('See more')"
25
25
  @click="displayMore"
26
26
  >
27
27
  <template v-if="buttonPlus">
@@ -41,7 +41,7 @@
41
41
  v-show="size < podcasts.length && loaded"
42
42
  class="btn"
43
43
  :class="buttonPlus ? 'btn-link-plus':'btn-more'"
44
- :aria-label="$t('See more')"
44
+ :title="$t('See more')"
45
45
  @click="displayMore"
46
46
  >
47
47
  <template v-if="buttonPlus">
@@ -12,7 +12,7 @@
12
12
  params: { participantId: animator.participantId },
13
13
  query: { productor: $store.state.filter.organisationId },
14
14
  }"
15
- :aria-label="$t('Participant')"
15
+ :title="$t('Participant')"
16
16
  >
17
17
  <div class="podcast-item-animator text-dark">
18
18
  {{ getAnimatorName(animator) }}
@@ -8,7 +8,7 @@
8
8
  :id="idPopover"
9
9
  tabindex="-1"
10
10
  class="saooti-help m-0"
11
- :aria-label="$t('Help')"
11
+ :title="$t('Help')"
12
12
  />
13
13
  <span class="mx-1">:</span>
14
14
  <Popover
@@ -37,7 +37,7 @@
37
37
  <router-link
38
38
  v-for="participant in participants"
39
39
  :key="participant.participantId"
40
- :aria-label="$t('Participant')"
40
+ :title="$t('Participant')"
41
41
  class="fw-bold"
42
42
  :to="{
43
43
  name: 'participant',
@@ -38,7 +38,7 @@
38
38
  >
39
39
  <div
40
40
  v-show="!playingPodcast"
41
- :aria-label="$t('Play')"
41
+ :title="$t('Play')"
42
42
  class="saooti-play2-bounty primary-color"
43
43
  />
44
44
  <div
@@ -60,7 +60,7 @@
60
60
  class="icon-container error-icon"
61
61
  >
62
62
  <div
63
- :aria-label="textVisible"
63
+ :title="textVisible"
64
64
  class="big-icon-error"
65
65
  :class="iconName"
66
66
  />
@@ -75,13 +75,13 @@
75
75
  <div
76
76
  v-if="!isDescription && displayDescription && isMobile"
77
77
  class="background-icon primary-bg saooti-arrow-up2"
78
- :aria-label="$t('Show description')"
78
+ :title="$t('Show description')"
79
79
  @click="showDescription"
80
80
  />
81
81
  <div
82
82
  v-if="isDescription && displayDescription && isMobile"
83
83
  class="background-icon primary-bg saooti-arrow-down2"
84
- :aria-label="$t('Hide description')"
84
+ :title="$t('Hide description')"
85
85
  @click="showDescription"
86
86
  />
87
87
  </div>
@@ -28,7 +28,7 @@
28
28
  <button
29
29
  class="btn btn-arrow"
30
30
  :class="{ disabled: !previousAvailable }"
31
- :aria-label="$t('Display previous')"
31
+ :title="$t('Display previous')"
32
32
  @click="displayPrevious()"
33
33
  >
34
34
  <div class="saooti-arrow-left2" />
@@ -36,7 +36,7 @@
36
36
  <button
37
37
  class="btn btn-arrow"
38
38
  :class="{ disabled: !nextAvailable }"
39
- :aria-label="$t('Display next')"
39
+ :title="$t('Display next')"
40
40
  @click="displayNext()"
41
41
  >
42
42
  <div class="saooti-arrow-right2" />
@@ -25,7 +25,7 @@
25
25
  class="btn"
26
26
  :class="buttonPlus ? 'btn-link-plus' : 'btn-more'"
27
27
  :disabled="inFetching"
28
- :aria-label="$t('See more')"
28
+ :title="$t('See more')"
29
29
  @click="displayMore"
30
30
  >
31
31
  <template v-if="buttonPlus">
@@ -6,7 +6,7 @@
6
6
  <label
7
7
  :for="id"
8
8
  class="d-inline"
9
- aria-label="select rubrique"
9
+ title="select rubrique"
10
10
  />
11
11
  <VueMultiselect
12
12
  :id="id"
@@ -34,7 +34,7 @@
34
34
  class="btn dropdown-toggle category-rubrique-item-plus dropdown-toggle-no-caret saooti-plus"
35
35
  data-bs-toggle="dropdown"
36
36
  aria-expanded="false"
37
- :aria-label="$t('See more')"
37
+ :title="$t('See more')"
38
38
  />
39
39
  <ul class="dropdown-menu dropdown-menu-right px-4">
40
40
  <div
@@ -22,7 +22,7 @@
22
22
  <div
23
23
  id="playerParameters"
24
24
  class="accordion-collapse collapse"
25
- aria-labelledby="labelPlayerParameter"
25
+ titleledby="labelPlayerParameter"
26
26
  data-bs-parent="#accordionParameters"
27
27
  >
28
28
  <div class="accordion-body">
@@ -66,7 +66,7 @@
66
66
  >
67
67
  <label
68
68
  for="number-input"
69
- :aria-label="$t('Number of player podcasts')"
69
+ :title="$t('Number of player podcasts')"
70
70
  />
71
71
  <span class="flex-shrink-0">{{ $t('Last podcasts') }}</span>
72
72
  </div>
@@ -15,7 +15,7 @@
15
15
  id="popover-share-help"
16
16
  tabindex="-1"
17
17
  class="saooti-help ms-2"
18
- :aria-label="$t('Help')"
18
+ :title="$t('Help')"
19
19
  />
20
20
  <Popover
21
21
  v-if="authenticated"
@@ -40,7 +40,6 @@
40
40
  rel="noopener"
41
41
  target="_blank"
42
42
  download
43
- :aria-label="$t('Downloading')"
44
43
  >
45
44
  <div class="saooti-download-bounty" />
46
45
  </a>
@@ -53,7 +52,6 @@
53
52
  verticalDisplay ? '' : 'mx-2',
54
53
  ]"
55
54
  title="Facebook"
56
- aria-label="Facebook"
57
55
  >
58
56
  <span
59
57
  v-if="!bigRound"
@@ -73,7 +71,6 @@
73
71
  ]"
74
72
  :href="twitterURL"
75
73
  title="Twitter"
76
- aria-label="Twitter"
77
74
  >
78
75
  <span
79
76
  v-if="!bigRound"
@@ -93,7 +90,6 @@
93
90
  ]"
94
91
  :href="linkedinURL"
95
92
  title="Linkedin"
96
- aria-label="Linkedin"
97
93
  >
98
94
  <span
99
95
  v-if="!bigRound"
@@ -114,7 +110,6 @@
114
110
  ]"
115
111
  :href="rssUrl"
116
112
  :title="$t('Subscribe to this emission')"
117
- aria-label="RSS"
118
113
  @click.prevent="openPopup()"
119
114
  >
120
115
  <span
@@ -133,7 +128,6 @@
133
128
  bigRound ? 'btn btn-big-round' : 'btn btn-rss share-btn mb-2',
134
129
  verticalDisplay ? '' : 'mx-2',
135
130
  ]"
136
- aria-label="copy"
137
131
  :title="$t('Copy this page URL')"
138
132
  @click="onCopyCode(urlPage,afterCopy)"
139
133
  >
@@ -154,7 +148,6 @@
154
148
  bigRound ? 'btn btn-big-round' : 'btn btn-rss share-btn mb-2',
155
149
  verticalDisplay ? '' : 'mx-2',
156
150
  ]"
157
- :aria-label="$t('Share newsletter')"
158
151
  :title="$t('Share newsletter')"
159
152
  @click="newsletter = true"
160
153
  >
@@ -175,7 +168,6 @@
175
168
  bigRound ? 'btn btn-big-round' : 'btn btn-rss share-btn mb-2',
176
169
  verticalDisplay ? '' : 'mx-2',
177
170
  ]"
178
- :aria-label="$t('Share QR Code')"
179
171
  :title="$t('Share QR Code')"
180
172
  @click="qrCode = true"
181
173
  >
@@ -197,7 +189,6 @@
197
189
  bigRound ? 'btn btn-big-round' : 'btn btn-whatsapp share-btn mb-2',
198
190
  verticalDisplay ? '' : 'mx-2',
199
191
  ]"
200
- aria-label="Whatsapp"
201
192
  title="Whatsapp"
202
193
  >
203
194
  <span
@@ -8,7 +8,7 @@
8
8
  type="button"
9
9
  :value="$t('Copy')"
10
10
  class="btn btn-primary"
11
- :aria-label="$t('Copy')"
11
+ :title="$t('Copy')"
12
12
  @click="onCopyCode(rss, afterCopy)"
13
13
  >
14
14
  </p>
@@ -2,7 +2,7 @@
2
2
  <div class="d-flex flex-column">
3
3
  <label
4
4
  for="iframe-select"
5
- aria-label="select miniplayer"
5
+ title="select miniplayer"
6
6
  />
7
7
  <select
8
8
  id="iframe-select"
@@ -12,7 +12,7 @@
12
12
  target="_blank"
13
13
  class="btn me-3 mb-2 share-btn"
14
14
  :href="amazon"
15
- aria-label="amazon"
15
+ title="amazon"
16
16
  >
17
17
  <span class="saooti-amazon">
18
18
  <div class="path1" />
@@ -26,7 +26,7 @@
26
26
  target="_blank"
27
27
  class="btn me-3 mb-2 share-btn"
28
28
  :href="applePodcast"
29
- aria-label="Apple"
29
+ title="Apple"
30
30
  >
31
31
  <span class="saooti-apple" />
32
32
  </a>
@@ -36,7 +36,7 @@
36
36
  target="_blank"
37
37
  class="btn me-3 mb-2 share-btn"
38
38
  :href="deezer"
39
- aria-label="Deezer"
39
+ title="Deezer"
40
40
  >
41
41
  <span class="saooti-deezer" />
42
42
  </a>
@@ -46,7 +46,7 @@
46
46
  target="_blank"
47
47
  class="btn me-3 mb-2 share-btn"
48
48
  :href="playerFm"
49
- aria-label="playerFm"
49
+ title="playerFm"
50
50
  >
51
51
  <span class="saooti-playerfm" />
52
52
  </a>
@@ -56,7 +56,7 @@
56
56
  target="_blank"
57
57
  class="btn me-3 mb-2 share-btn"
58
58
  :href="podcastAddict"
59
- aria-label="podcastAddict"
59
+ title="podcastAddict"
60
60
  >
61
61
  <span class="saooti-podcast-addict" />
62
62
  </a>
@@ -66,7 +66,7 @@
66
66
  target="_blank"
67
67
  class="btn me-3 mb-2 btn-radioline share-btn"
68
68
  :href="radioline"
69
- aria-label="Radioline"
69
+ title="Radioline"
70
70
  >
71
71
  <span class="saooti-radioline" />
72
72
  </a>
@@ -76,7 +76,7 @@
76
76
  target="_blank"
77
77
  class="btn me-3 mb-2 share-btn"
78
78
  :href="spotify"
79
- aria-label="Spotify"
79
+ title="Spotify"
80
80
  >
81
81
  <span class="saooti-spotify" />
82
82
  </a>
@@ -86,7 +86,7 @@
86
86
  target="_blank"
87
87
  class="btn me-3 mb-2 share-btn"
88
88
  :href="stitcher"
89
- aria-label="stitcher"
89
+ title="stitcher"
90
90
  >
91
91
  <span class="saooti-stitcher-logo">
92
92
  <div class="path1" />
@@ -114,7 +114,7 @@
114
114
  target="_blank"
115
115
  class="btn me-3 mb-2 share-btn"
116
116
  :href="tunein"
117
- aria-label="Tunin"
117
+ title="Tunin"
118
118
  >
119
119
  <span class="saooti-tunin" />
120
120
  </a>
@@ -11,7 +11,7 @@
11
11
  >
12
12
  <label
13
13
  :for="idSearch"
14
- :aria-label="label"
14
+ :title="label"
15
15
  />
16
16
  <div
17
17
  v-if="!textValue"
@@ -106,7 +106,7 @@
106
106
  href="https://www.acpm.fr/L-ACPM/Certifications-et-Labels/Les-Podcasts"
107
107
  rel="noopener"
108
108
  target="_blank"
109
- :aria-label="$t('Octopus is ACPM Podcast accredited')"
109
+ :title="$t('Octopus is ACPM Podcast accredited')"
110
110
  >
111
111
  <img
112
112
  class="acpm_image"
@@ -82,7 +82,7 @@
82
82
  class="btn dropdown-toggle m-1 admin-button dropdown-toggle-no-caret saooti-user-octopus"
83
83
  data-bs-toggle="dropdown"
84
84
  aria-expanded="false"
85
- aria-label="Profile"
85
+ title="Profile"
86
86
  />
87
87
  <div class="dropdown-menu dropdown-menu-right px-4">
88
88
  <a
@@ -15,7 +15,7 @@
15
15
  @click="switchPausePlay"
16
16
  >
17
17
  <div
18
- :aria-label="$t('Play')"
18
+ :title="$t('Play')"
19
19
  :class="{
20
20
  'saooti-play2-bounty': isPaused,
21
21
  'saooti-pause-bounty': isPlaying,
@@ -29,7 +29,7 @@
29
29
  >
30
30
  <div
31
31
  class="saooti-stop-bounty"
32
- :aria-label="$t('Stop')"
32
+ :title="$t('Stop')"
33
33
  />
34
34
  </div>
35
35
  </template>
@@ -5,7 +5,7 @@
5
5
  >
6
6
  <div
7
7
  class="saooti-burger-menu"
8
- :aria-label="$t('open left Menu')"
8
+ :title="$t('open left Menu')"
9
9
  @click="onDisplayMenu(false)"
10
10
  />
11
11
  <router-link
@@ -106,7 +106,7 @@
106
106
  <div class="d-flex justify-content-end flex-nowrap">
107
107
  <HomeDropdown :is-education="isEducation" />
108
108
  <router-link
109
- :aria-label="$t('Search')"
109
+ :title="$t('Search')"
110
110
  :to="{
111
111
  name: 'podcasts',
112
112
  query: { productor: $store.state.filter.organisationId },
@@ -10,7 +10,7 @@
10
10
  <button
11
11
  type="button"
12
12
  class="btn-close"
13
- aria-label="Close"
13
+ title="Close"
14
14
  @click="closePopup"
15
15
  />
16
16
  </div>
@@ -22,7 +22,7 @@
22
22
  type="button"
23
23
  :value="$t('Copy')"
24
24
  class="btn btn-primary"
25
- :aria-label="$t('Copy')"
25
+ :title="$t('Copy')"
26
26
  @click="onCopyCode(link, afterCopy)"
27
27
  >
28
28
  </p>
@@ -14,7 +14,7 @@
14
14
  v-if="closable"
15
15
  type="button"
16
16
  class="btn-close"
17
- aria-label="Close"
17
+ title="Close"
18
18
  @click="closePopup"
19
19
  />
20
20
  </div>
@@ -52,7 +52,7 @@
52
52
  type="button"
53
53
  :value="$t('Copy')"
54
54
  class="btn btn-primary"
55
- :aria-label="$t('Copy')"
55
+ :title="$t('Copy')"
56
56
  @click="onCopyCode(newsletterHtml, afterCopy)"
57
57
  >
58
58
  </div>
@@ -64,7 +64,7 @@
64
64
  />
65
65
  <label
66
66
  for="newsletter_code_textarea"
67
- :aria-label="$t('HTML Code')"
67
+ :title="$t('HTML Code')"
68
68
  />
69
69
  </div>
70
70
  </div>
@@ -143,7 +143,7 @@ export default defineComponent({
143
143
  if(this.podcast.article && 0 !== this.podcast.article.length){
144
144
  return (`<a href="` +
145
145
  this.podcast.article +
146
- `" aria-label="` +
146
+ `" title="` +
147
147
  this.$t('See associated article') +
148
148
  `">
149
149
  <img width="44" height="44" style="display: inline-block;vertical-align: middle; margin-right:3px" src="` +
@@ -239,7 +239,7 @@ export default defineComponent({
239
239
  <div style="font-family: Arial, sans-serif;font-size: 12px;line-height: 20px;background: #f3f3f3;vertical-align: middle;padding: 15px 10px;display: flex; align-items:center; flex-wrap:wrap">
240
240
  <a href="` +
241
241
  window.location.href +
242
- `" aria-label="` +
242
+ `" title="` +
243
243
  this.$t('Listen this episode') +
244
244
  `">
245
245
  <img width="44" height="44" style="display: inline-block;vertical-align: middle" src="` +
@@ -13,7 +13,7 @@
13
13
  <button
14
14
  type="button"
15
15
  class="btn-close"
16
- aria-label="Close"
16
+ title="Close"
17
17
  @click="closePopup"
18
18
  />
19
19
  </div>
@@ -14,7 +14,7 @@
14
14
  <button
15
15
  type="button"
16
16
  class="btn-close"
17
- aria-label="Close"
17
+ title="Close"
18
18
  @click="closePopup"
19
19
  />
20
20
  </div>
@@ -36,7 +36,6 @@
36
36
  <a
37
37
  class="btn btn-big-round"
38
38
  :title="$t('Subscribe to this participant')"
39
- :aria-label="$t('Subscribe to this participant')"
40
39
  :href="rssUrl"
41
40
  rel="noopener"
42
41
  target="_blank"