lazy_modal 0.1.0 → 0.1.1
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 +1 -1
- data/app/views/lazy_modal/modals/demo.erb +2 -2
- data/lib/lazy_modal/version.rb +1 -1
- 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: 898d9bb4bedddc95fcc28d8d97ad30f96fbe840d
|
4
|
+
data.tar.gz: 4f49a20f970401297d33e60e3ffcf122506c7a47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8c4f9bb1b1c41b8c0a6bcc6acee1bc7109e3db5636b3f7f4af26bd27705e6e203ebad8b54148a2adab42aa2a4f04c4a858f177952bd971202b35b9a23acd1a7
|
7
|
+
data.tar.gz: 7828b943178a997897e344116c49209e33ee5688db08746df8f2925344acb7dd5cce36be184992e8388b71af31f883b0bdcd1127876a4df6962dcf54e36dac40
|
data/README.md
CHANGED
@@ -35,7 +35,7 @@ Start server
|
|
35
35
|
$ rails s
|
36
36
|
```
|
37
37
|
|
38
|
-
open below url in any browse [http://localhost:3000/
|
38
|
+
open below url in any browse [http://localhost:3000/lazy_modals/demo](http://localhost:3000/lazy_modals/demo), u will see a break style modal demo
|
39
39
|
|
40
40
|
##Options
|
41
41
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class="modal fade" id="
|
1
|
+
<div class="modal fade" id="demo">
|
2
2
|
<div class="modal-dialog">
|
3
3
|
<div class="modal-content">
|
4
4
|
<div class="modal-header">
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<h4 class="modal-title">Demo</h4>
|
8
8
|
</div>
|
9
9
|
<div class="modal-body">
|
10
|
-
<p>This is Lazy Modal Demo, you can custom the modal by <%= link_to 'Readme', '
|
10
|
+
<p>This is Lazy Modal Demo, you can custom the modal by <%= link_to 'Readme', 'https://github.com/lihlio/lazy_modal' %></p>
|
11
11
|
</div>
|
12
12
|
<div class="modal-footer">
|
13
13
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
data/lib/lazy_modal/version.rb
CHANGED