Welcome to mirror list, hosted at ThFree Co, Russian Federation.

balsamiq.rb « blob_viewer « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f982521db9973aea2fcf210a26523ae0bf29b06e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module BlobViewer
  class Balsamiq < Base
    include Rich
    include ClientSide

    self.partial_name = 'balsamiq'
    self.extensions = %w(bmpr)
    self.binary = true
    self.switcher_icon = 'file-image-o'
    self.switcher_title = 'preview'
  end
end