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

Loading…
Cancel
Save