Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Update icon names for proto-repl tool-bar icons #335

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions lib/proto-repl.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -158,44 +158,44 @@ module.exports = ProtoRepl =
consumeToolbar: (toolbar) ->
@toolbar = toolbar 'proto-repl'
@toolbar.addButton
icon: 'android-refresh'
icon: 'md-refresh'
iconset: 'ion'
callback: 'proto-repl:refresh-namespaces'
tooltip: 'Refresh Namespaces'
@toolbar.addButton
icon: 'android-sync'
icon: 'md-sync'
iconset: 'ion'
callback: 'proto-repl:super-refresh-namespaces'
tooltip: 'Clear and Refresh Namespaces'
@toolbar.addButton
icon: 'speedometer'
icon: 'md-speedometer'
iconset: 'ion'
callback: 'proto-repl:run-all-tests'
tooltip: 'Run All Tests'

@toolbar.addSpacer()

@toolbar.addButton
icon: 'paypal'
icon: 'file-code'
iconset: 'fa'
callback: 'proto-repl:pretty-print'
tooltip: 'Pretty Print'

@toolbar.addSpacer()

@toolbar.addButton
icon: 'code-download'
icon: 'md-code-download'
iconset: 'ion'
callback: 'proto-repl:toggle-auto-scroll'
tooltip: 'Toggle Auto Scroll'
@toolbar.addButton
icon: 'trash-a'
icon: 'md-trash'
iconset: 'ion'
callback: 'proto-repl:clear-repl'
tooltip: 'Clear REPL'
@toolbar.addSpacer()
@toolbar.addButton
icon: 'power'
icon: 'md-power'
iconset: 'ion'
callback: 'proto-repl:exit-repl'
tooltip: 'Quit REPL'
Expand Down