Sha256: 7b63ec0e73e66f3d550ebb658375a754bf2540cceaf33fe623716e04e0164326
Contents?: true
Size: 630 Bytes
Versions: 12
Compression:
Stored size: 630 Bytes
Contents
require_relative '../helpers/indented_grid' Coprl::Presenters.define(:floating_card) do helpers Demo::Helpers::IndentedGrid attach :top_nav attach :pattern_drawer page_title 'Floating Card' indented_grid do button icon: :open_in_new do event :click do toggle_visibility :card end end content id: :card, hidden: true, float: true do card do media do title "Hi I'm floating" button icon: :close do event :click do hide :card end end end end end attach :code, file: __FILE__ end end
Version data entries
12 entries across 12 versions & 1 rubygems