caboose-cms 0.8.49 → 0.8.50
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11ccf530449523a7c1acc40056546a113ea02603
|
|
4
|
+
data.tar.gz: 46446d0c93c7a5a8ba9e4e95c58fa50ed810abae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eee9bdeb8df4a068b3fab66d6b8c775ca29c699d01074c099eb2bac0fcbdd33a5b8b79be3a4ef37698bc01f7231fd67e15e5e8f35c80ce6f6ee3abdda8a644ce
|
|
7
|
+
data.tar.gz: 9721bd6f8b12ec8c789126c0fbf8a9bf424c572dc3bb5a20a78c6db1d4cb5729f888736a058d04b0b915cb44e87a102035c4f9403d74bb8840f18f4415583bcc
|
|
@@ -319,10 +319,9 @@ var MediaModalController = DefaultBlockModalController.extend({
|
|
|
319
319
|
},
|
|
320
320
|
FileUploaded: function(ip, file)
|
|
321
321
|
{
|
|
322
|
-
that.refresh_media(function() { that.
|
|
322
|
+
that.refresh_media(function() { that.print_media(); });
|
|
323
323
|
},
|
|
324
|
-
UploadComplete: function(up, files) {
|
|
325
|
-
that.refresh_media(function() { that.refresh_categories(function() { that.print(); }); });
|
|
324
|
+
UploadComplete: function(up, files) {
|
|
326
325
|
if (that.uploader)
|
|
327
326
|
{
|
|
328
327
|
$("#the_uploader").slideUp(400, function() {
|
|
@@ -330,6 +329,7 @@ var MediaModalController = DefaultBlockModalController.extend({
|
|
|
330
329
|
that.uploader = false;
|
|
331
330
|
});
|
|
332
331
|
}
|
|
332
|
+
that.refresh_media(function() { that.print_media(); });
|
|
333
333
|
}
|
|
334
334
|
}
|
|
335
335
|
});
|
data/lib/caboose/version.rb
CHANGED