mathquill_rails 0.9.3.2 → 0.9.3.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 +4 -4
- data/README.md +3 -1
- data/lib/mathquill_rails/version.rb +1 -1
- data/vendor/assets/stylesheets/mathquill.css +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0a0a799637fb68a4b240e9f97961c36b2fa7293
|
4
|
+
data.tar.gz: c0d91aa9c76790aa861453119928db17f821e46d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 537b52ed9a970add2140fbf64adaf61d6c967775722e62c87fa0d220f5abe2eb369e28fc259d24edbd64a5aba0e7d2b4b6572667cedad7714728a89849b0324f
|
7
|
+
data.tar.gz: 1bfbdb760912135dbe2d134144f524e988d7d7933d3ecb080fdae3d8d943ab7820bcca75a9d8dc751b066f811d1594d1523783cdf5b52fd775099813a19299f0
|
data/README.md
CHANGED
@@ -5,6 +5,8 @@ The gem includes the development (non-minified) source for ease of exploration.
|
|
5
5
|
|
6
6
|
## Installation
|
7
7
|
|
8
|
+
This gem requires the asset pipeline...I've only tested it on Rails 4+, but it should work on 3.1+ as well.
|
9
|
+
|
8
10
|
Add this line to your application's Gemfile:
|
9
11
|
|
10
12
|
```ruby
|
@@ -37,4 +39,4 @@ Add the following to the head portion of any pages you want to include mathquill
|
|
37
39
|
|
38
40
|
Add the following to the head portion of any pages you want to include mathquill:
|
39
41
|
|
40
|
-
stylesheet_link_tag "mathquill"
|
42
|
+
stylesheet_link_tag "mathquill"
|
@@ -9,8 +9,8 @@
|
|
9
9
|
*/
|
10
10
|
@font-face {
|
11
11
|
font-family: Symbola;
|
12
|
-
src: url(
|
13
|
-
src: local("Symbola Regular"), local("Symbola"), url(
|
12
|
+
src: url(assets/Symbola.eot);
|
13
|
+
src: local("Symbola Regular"), local("Symbola"), url(assets/Symbola.ttf) format("truetype"), url(assets/Symbola.otf) format("opentype"), url(assets/Symbola.svg#Symbola) format("svg");
|
14
14
|
}
|
15
15
|
.mathquill-editable {
|
16
16
|
display: -moz-inline-box;
|