mumuki-laboratory 8.1.2 → 8.1.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d366cf0d6d349759281213746e2c6a6f1a998db2d07efa9dc45b02480487108e
4
- data.tar.gz: 0c890e15fa8b8f3164372b7c8f6844b17e85ded1686bb1c4d0947d9a08b7cd6a
3
+ metadata.gz: 7bcc70727fa140c5ad7c313f8b9e9a5e1f9a9e3b383b1add72556f64d4fed4e3
4
+ data.tar.gz: 874a6b5d2f8a64249560dfb11f9f743d6f11267e8c73602e0d53abacb8e9c651
5
5
  SHA512:
6
- metadata.gz: 4ff7d88d695024cbd9feac650c31b77055291f280791b262ddf6c6477f54a2e7ef0d858bbe4668594e88b755dd5ab1934ac7b8acc045acf02360ddae9dca8d7f
7
- data.tar.gz: 555cfdee07fa9e97d62507360fda991dfd6bf16668093d6af44ab6f6ee79dcf22ab57aaf08d49a2e434767bd3a7dadfb8316321b22d3efa0e0b0f19f5ad7c1e0
6
+ metadata.gz: 6c9b7889090c806dd880c5cd9d2730117d2d4927ef18765582b0d79010463f4596bdcf8f65f297b95e0bcec238ec7e36311bffe889d29460191cd79e929afdfb
7
+ data.tar.gz: 2304d78fabb8a5268fb33f79737480d94550fdc22c9a94f9cd65f70ca02ed1e2dbb7d78089690503a85b99ec88dd845a70678970997a3bba4a3c644b2e90276e
@@ -36,7 +36,7 @@
36
36
  <h2><%= t(:exams) %></h2>
37
37
  <% @exams.each_with_index do |it, index| %>
38
38
  <div class="chapter">
39
- <h3> <%= t(:exam_number, number: index) %> <%= link_to_path_element it, mode: :plain %></h3>
39
+ <h3> <%= index + 1 %>. <%= link_to_path_element it, mode: :plain %></h3>
40
40
 
41
41
  <div class="text-box">
42
42
  <%= it.guide.description_teaser_html %>
@@ -20,19 +20,19 @@
20
20
  <div class="mu-navbar-avatar">
21
21
  <% if current_logged_user? %>
22
22
  <% if in_gamified_context? %>
23
- <i class="fa fa-star fa-fw fa-2x navbar-icon mu-level-tooltip" data-toggle="tooltip" data-placement="bottom" level="<%= t(:level) %>"></i>
24
- <span class="mu-level-number"></span>
23
+ <div class="mu-navbar-element">
24
+ <i class="fa fa-star fa-fw fa-2x mu-navbar-icon mu-level-tooltip" data-toggle="tooltip" data-placement="bottom" level="<%= t(:level) %>"></i>
25
+ <span class="mu-level-number"></span>
26
+ </div>
25
27
  <% end %>
26
- <div class="dropdown">
27
- <span>
28
- <a class="notifications-box <%= has_notifications? ? '' : 'notifications-box-empty' %>" href=<%= "#{user_notifications_path}" %>>
29
- <i class="fa fa-bell fa-fw fa-2x navbar-icon"></i>
30
- <span class="badge badge-notifications"><%= notifications_count %></span>
31
- </a>
32
- </span>
28
+ <div class="dropdown mu-navbar-element notifications-box <%= 'notifications-box-empty' unless has_notifications? %>">
29
+ <a href=<%= "#{user_notifications_path}" %>>
30
+ <i class="fa fa-bell fa-fw fa-2x mu-navbar-icon"></i>
31
+ <span class="badge badge-notifications"><%= notifications_count %></span>
32
+ </a>
33
33
  </div>
34
- <div class="dropdown">
35
- <div id="profileDropdown" class="profile-dropdown navbar-icon" data-toggle="dropdown" aria-label="<%= t(:user) %>" role="menu" tabindex="0">
34
+ <div class="dropdown mu-navbar-element">
35
+ <div id="profileDropdown" class="profile-dropdown" data-toggle="dropdown" aria-label="<%= t(:user) %>" role="menu" tabindex="0">
36
36
  <%= profile_picture_for current_user %>
37
37
  <span class="caret"></span>
38
38
  </div>
@@ -86,7 +86,6 @@ en:
86
86
  gone: Oops! Content has expired
87
87
  internal_server_error: Oops! Something went wrong
88
88
  not_found: Oops! Page was not found
89
- exam_number: 'Exam %{number}:'
90
89
  exams: Exams
91
90
  exercise: Exercise
92
91
  exercises: Exercises
@@ -85,7 +85,6 @@ es-CL:
85
85
  gone: ¡Ups! El contenido expiró
86
86
  internal_server_error: ¡Ups! Algo no anduvo bien
87
87
  not_found: ¡Ups! La página no existe
88
- exam_number: 'Examen %{number}:'
89
88
  exams: Exámenes
90
89
  exercise: Ejercicio
91
90
  exercise_count: ejercicios
@@ -93,7 +93,6 @@ es:
93
93
  gone: ¡Ups! El contenido expiró
94
94
  internal_server_error: ¡Ups! Algo no anduvo bien
95
95
  not_found: ¡Ups! La página no existe
96
- exam_number: 'Examen %{number}:'
97
96
  exams: Exámenes
98
97
  exercise: Ejercicio
99
98
  exercise_count: ejercicios
@@ -89,7 +89,6 @@ pt:
89
89
  gone: Opa! O conteúdo expirou
90
90
  internal_server_error: Opa! Algo não estava certo
91
91
  not_found: Opa! A página que você pesquisou não existe
92
- exam_number: 'Revise %{number}:'
93
92
  exams: Examesca
94
93
  exercise: Exercício
95
94
  exercise_count: exercícios
@@ -1,5 +1,5 @@
1
1
  module Mumuki
2
2
  module Laboratory
3
- VERSION = '8.1.2'
3
+ VERSION = '8.1.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumuki-laboratory
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.2
4
+ version: 8.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-14 00:00:00.000000000 Z
11
+ date: 2020-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails