dgw_gallery 0.2.4 → 0.2.8

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: 7da1d61ff9fa256f1cf31f6957e0342d555f51e25d0660e9d10044b07ecdeb05
4
- data.tar.gz: 6c456b6685462b418f784786b92ec1960e05edb21458af91a457b52649ddb1be
3
+ metadata.gz: 2ce94c5d92d8b19e40bac736ba5637adcd767135a591fca6b33995223ee3f593
4
+ data.tar.gz: 82596aa468e8ed843d148080f5039f3d7639962bf3fb4c2940bcbe8fe324cb24
5
5
  SHA512:
6
- metadata.gz: 86f32e6e25ef2052a88f5da9313548534a915914ad6fd0a76a6a3c4b45662f47ffb7aed2449d873d6dee49bf22387d065d94a1d380719a584b1edab859b36139
7
- data.tar.gz: c5508777a3f65744575e47e3211ebec3359bca53b0caf769a24c674adbce1f5779d7aef6b1b845aa7186547c7fed0ab118e62a2f61eed68354ee8bfe4f65ee55
6
+ metadata.gz: 4c9e43f641b20dd184d47372a36a702e2dc554d06d4db48a8d917b6a9f24fe2a70c8d714e4d7a5f869bc8c04ee078011c42887d9ddd02808442c71f349547e51
7
+ data.tar.gz: d355c7eff7e8e7f39b10d8394da1f81feb23e564a5942f18a64d0f733f03536051264002dc714d8223ec41ebb265bd8f4820ea938179063da58fbd89e371af06
data/README.md CHANGED
@@ -32,10 +32,46 @@ $ gem install dgw_gallery
32
32
  If you would like to modify the views or override the controller you can install either or both.
33
33
  Execute:
34
34
  ```bash
35
- $ rails app:dgw_gallery:install:views # Install Gallery Views
36
- $ rails app:dgw_gallery:install:controller # Install Gallery Controller
35
+ $ rails dgw_gallery:install:views # Install Gallery Views
36
+ $ rails dgw_gallery:install:controller # Install Gallery Controller
37
+ $ rails dgw_gallery:install:css # Install Gallery CSS
37
38
  ```
38
39
 
40
+ If you are using turbolinks and experiencing issues with the carousel not starting on initial page load, try adding the following line at the end of your head section either for your main app or for that specific page.
41
+ ```html
42
+ <head>
43
+ ...
44
+ ...
45
+ <meta name="turbolinks-visit-control" content="reload">
46
+ </head>
47
+ ```
48
+
49
+ ## Usage
50
+ #### To embed the carousel on your page you will use code similar to this
51
+ ```ruby
52
+ ### in your action where you want to display gallery
53
+ ### replace 'id' with the id of gallery you want
54
+ @gallery = Gallery.find(id)
55
+ ```
56
+
57
+ ```erb
58
+ <!-- Code in view.html.erb -->
59
+ <div class="row mt-2">
60
+ <div class="card card-body border-radius-xl col-12 text-black shadow-lg" id="galleryCodeSection">
61
+ <div class="row justify-content-center align-items-evenly">
62
+ <div class="col-5 bg-light rounded mx-5 h-100">
63
+ <div class="card-header mt-3 border-radius-xl bg-transparent position-relative z-index-2 blur-shadow-image dark-shadow">
64
+ <%= render 'gallery/carousel' %>
65
+ </div>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ ```
71
+
72
+ Customizations can be made in the app/views/gallery/_carousel.html.erb view if necessary (after installing views)
73
+
74
+
39
75
  ## Contributing
40
76
  If you wish to contribute submit a pull request and detail your changes and comment them in the code as well.
41
77