debian-mirror-gitlab/app/models/blob_viewer/balsamiq.rb

15 lines
286 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module BlobViewer
class Balsamiq < Base
include Rich
include ClientSide
self.partial_name = 'balsamiq'
self.extensions = %w(bmpr)
self.binary = true
2021-01-03 14:25:43 +05:30
self.switcher_icon = 'doc-image'
2017-08-17 22:00:37 +05:30
self.switcher_title = 'preview'
end
end