glib-web 0.5.98 → 0.5.99
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 +4 -4
- data/app/helpers/glib/json_ui/view_builder.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3846734617544c340e6040146a7d8f3ec16e08e777e50f9e8e110bd1b474207
|
|
4
|
+
data.tar.gz: 0fe640a64e1af7165ef354dfe4196d7091e451c9feaf3ff1f17e76a485cbd8c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63f0145220703afa5f028276805a53e13da6b25cc2e395b278e73b66d70b06c4e6dead7685ce32cc02521ee3654cd2994a56094e80c7ef9aeb8f4b93ea09040e
|
|
7
|
+
data.tar.gz: ee53caf2e31a726baec58a43a3ec0a6c65a22fc05e47c71dbb08f344788ac52f8a6940b62a25bb4a1665641630c5a688d0c49a919d015b7e53f04596599dd1cc
|
|
@@ -83,21 +83,27 @@ module Glib
|
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
class H1 < AbstractText
|
|
86
|
+
action :onClick
|
|
86
87
|
end
|
|
87
88
|
|
|
88
89
|
class H2 < AbstractText
|
|
90
|
+
action :onClick
|
|
89
91
|
end
|
|
90
92
|
|
|
91
93
|
class H3 < AbstractText
|
|
94
|
+
action :onClick
|
|
92
95
|
end
|
|
93
96
|
|
|
94
97
|
class H4 < AbstractText
|
|
98
|
+
action :onClick
|
|
95
99
|
end
|
|
96
100
|
|
|
97
101
|
class H5 < AbstractText
|
|
102
|
+
action :onClick
|
|
98
103
|
end
|
|
99
104
|
|
|
100
105
|
class H6 < AbstractText
|
|
106
|
+
action :onClick
|
|
101
107
|
end
|
|
102
108
|
|
|
103
109
|
class P < AbstractText
|