BigW Consortium Gitlab

image.rb 264 Bytes
Newer Older
Douwe Maan committed
1 2 3 4 5 6 7
module BlobViewer
  class Image < Base
    include Rich
    include ClientSide

    self.partial_name = 'image'
    self.extensions = UploaderHelper::IMAGE_EXT
8
    self.binary = true
Douwe Maan committed
9 10 11 12
    self.switcher_icon = 'picture-o'
    self.switcher_title = 'image'
  end
end