use three dots instead of unicode character

pull/29/head
Kevin Burke 11 years ago
parent 895260a389
commit 1ea1670496

@ -44,7 +44,7 @@ class app.views.DocPicker extends app.View
unless @saving unless @saving
@saving = true @saving = true
app.settings.setDocs @getSelectedDocs() app.settings.setDocs @getSelectedDocs()
@saveLink.textContent = if app.appCache then 'Downloading' else 'Saving…' @saveLink.textContent = if app.appCache then 'Downloading...' else 'Saving...'
app.reload() app.reload()
return return
@ -65,5 +65,5 @@ class app.views.DocPicker extends app.View
onAppCacheProgress: (event) => onAppCacheProgress: (event) =>
if event.lengthComputable if event.lengthComputable
percentage = Math.round event.loaded * 100 / event.total percentage = Math.round event.loaded * 100 / event.total
@saveLink.textContent = "Downloading (#{percentage}%)" @saveLink.textContent = "Downloading... (#{percentage}%)"
return return

Loading…
Cancel
Save