We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 227cffc commit 14109e9Copy full SHA for 14109e9
History.md
@@ -1,3 +1,7 @@
1
+## 2.4.0 / 2020-04-19
2
+
3
+* Lazy load Google Maps script (#36)
4
5
## 2.3.2 / 2020-01-04
6
7
* Add support for Jekyll 4.x (#41)
lib/jekyll-maps/version.rb
@@ -1,5 +1,5 @@
module Jekyll
module Maps
- VERSION = "2.3.2".freeze
+ VERSION = "2.4.0".freeze
end
spec/google_map_tag_spec.rb
@@ -79,9 +79,8 @@
79
80
81
it "renders attributes" do
82
- expected = %r!div id='foo' style='width:100px;height:50%;'
83
- class='baz bar jekyll-map'!
84
- expect(output).to match(expected)
+ expect(output).to match("div id='foo' style='width:100px;height:50%;'")
+ expect(output).to match("class='baz bar jekyll-map'")
85
86
87
it "renders custom zoom setting" do
0 commit comments