anaconda 0.9.6 → 0.9.7

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: 8df27da6d0ac694b1fabcd6a4dc2dec3542bb2c7
4
- data.tar.gz: d934848311a966483828904b770631b3e2026144
3
+ metadata.gz: 663eda1a92d9c737c550bb80b4dbe0635be9c76f
4
+ data.tar.gz: f84f4bb950d328fc9de359ca67e5089cd5659c3b
5
5
  SHA512:
6
- metadata.gz: 8f629018124ca65353d42cefb13af6cf4b5d1fc6314e5b1aacf83f2422d6d373f41549dd21b348d19c9291e538c004e757d608ac96979287af7ada559cc2f2b5
7
- data.tar.gz: f35d8aae3e8c34ab70c406854e9c617e14bbf2cf2d2d32122916d0d7da742cd141d52d0fb0c132f068f087c58b6427d2a6825e9d21dfc7b148debac85f3863e6
6
+ metadata.gz: f94bcab3e2bbcd472e26c273d9da195727fac3f8c58ad69b41650048b50fd617fe7665f1fe7d1cba8f08cba101a8e6c92a9d930c8676a8345379a7036ecc0445
7
+ data.tar.gz: 8b32f114820d488f6bb1d5953dbff223b702c2d40a729180af1df2ac3033e0bcaf61be8451d7bc3c096dacf9369b34d5085a83fde3944dc64090f900999be89d
@@ -151,6 +151,8 @@ We highly recommend the `figaro` gem [https://github.com/laserlemon/figaro](http
151
151
  The magic method is asset_url which will return a signed S3 URL if the file is stored with an ACL of `private` and will return a non-signed URL if the file is stored with public access.
152
152
 
153
153
  ## Changelog
154
+ * 0.9.7
155
+ * Add percent sign to progress-percent div
154
156
  * 0.9.6
155
157
  * Fix `auto_upload` and `auto_submit` options.
156
158
 
@@ -209,7 +209,7 @@ class @AnacondaUploadField
209
209
  Math.max(fileSizeInBytes, 0.1).toFixed(1) + byteUnits[i];
210
210
 
211
211
  update_progress_to: (progress) ->
212
- @upload_details_container.find(".progress-percent").html progress
212
+ @upload_details_container.find(".progress-percent").html progress + '%'
213
213
  @upload_details_container.find('.progress-bar').css('width', progress + '%')
214
214
 
215
215
  file_completed_upload: (data) ->
@@ -1,5 +1,5 @@
1
1
  module Anaconda
2
2
  module Rails
3
- VERSION = "0.9.6"
3
+ VERSION = "0.9.7"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anaconda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben McFadden