2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-28 06:42:30 -04:00
|
|
|
module BlobViewer
|
2017-04-28 06:32:56 -04:00
|
|
|
class Balsamiq < Base
|
|
|
|
include Rich
|
|
|
|
include ClientSide
|
|
|
|
|
|
|
|
self.partial_name = 'balsamiq'
|
|
|
|
self.extensions = %w(bmpr)
|
|
|
|
self.binary = true
|
2020-10-14 11:08:42 -04:00
|
|
|
self.switcher_icon = 'doc-image'
|
2017-04-28 06:32:56 -04:00
|
|
|
self.switcher_title = 'preview'
|
|
|
|
end
|
|
|
|
end
|