rubylight 1.0.2 → 1.0.3.2
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.
- data/README.rdoc +1 -1
- data/app/assets/javascripts/lightbox.js +2 -2
- data/lib/rubylight/version.rb +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -31,7 +31,7 @@ Require the modified Lightbox javascript file in your application.js file:
|
|
|
31
31
|
|
|
32
32
|
<b>title</b> is the caption displayed below the pic after clicking
|
|
33
33
|
|
|
34
|
-
<b>collection</b> is which collection the pic belongs to. Pictures in the same collection can be cycled
|
|
34
|
+
<b>collection</b> is which collection the pic belongs to. Pictures in the same collection can be cycled.
|
|
35
35
|
|
|
36
36
|
<b>html_options</b> is any further html options for the link
|
|
37
37
|
|
|
@@ -48,8 +48,8 @@ lightbox = new Lightbox options
|
|
|
48
48
|
LightboxOptions = (function() {
|
|
49
49
|
|
|
50
50
|
function LightboxOptions() {
|
|
51
|
-
this.fileLoadingImage = 'assets/loading.gif';
|
|
52
|
-
this.fileCloseImage = 'assets/close.png';
|
|
51
|
+
this.fileLoadingImage = '/assets/loading.gif';
|
|
52
|
+
this.fileCloseImage = '/assets/close.png';
|
|
53
53
|
this.resizeDuration = 700;
|
|
54
54
|
this.fadeDuration = 500;
|
|
55
55
|
this.labelImage = "Image";
|
data/lib/rubylight/version.rb
CHANGED