caboose-cms 0.7.58 → 0.7.59
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/caboose/admin_media_index.js +1 -1
- data/lib/caboose/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: b8330146252102d4ebee9f4792970c1a4d6a075b
|
4
|
+
data.tar.gz: 9f98219c9420295379b13db368a13b00de80176f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0df8ce931fc68c685cd53416d6a5ac223afec93285b2ff5237e91abb879ec3b05acd71f256ef65ba1b986b8d6b0f463c535fb43acec6eadc80c50bcc74da552e
|
7
|
+
data.tar.gz: 6098e6a6d7d4102a2af8d3b8810434d855ab06fc5edb26ffce65fd689ea8e1886469d28cd5451ff35f6855d069e1de382df48db0b0753dcd652925ca3415d341
|
@@ -278,7 +278,7 @@ MediaController.prototype = {
|
|
278
278
|
if (that.allow_edit && m.image_urls) li.append($("<a/>").html("Edit Image").click(function() { that.edit_image($(this).parent().data('media_id')); }));
|
279
279
|
else li.append($("<a/>").attr('href', m.file_url).html("Direct URL"));
|
280
280
|
if ( m.image_urls ) li.append($("<a/>").addClass("dl i").html("Download").click(function() { that.download_image($(this).parent().data('media_id')); }));
|
281
|
-
else li.append($("<a/>").addClass("dl").html("Download").click(function() { that.download_image($(this).parent().data('media_id')); }));
|
281
|
+
else li.append($("<a/>").addClass("dl i").html("Download").click(function() { that.download_image($(this).parent().data('media_id')); }));
|
282
282
|
ul.append(li);
|
283
283
|
});
|
284
284
|
}
|
data/lib/caboose/version.rb
CHANGED