Sha256: 6aaa4dc234b1153d0a5b794e2e369e03e25dc0fd3dcc5e41b9bc4aa0c1101595
Contents?: true
Size: 1.33 KB
Versions: 17
Compression:
Stored size: 1.33 KB
Contents
# frozen_string_literal: true new({ renderer: :html, method: :diffusion, type: :string }) new({ method: :red, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc| end new({ method: :green, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc| end new({ method: :blue, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc| end new({ method: :alpha, type: :integer, specific: :color, renderer: :html }) do |value, _user_proc| end new({ renderer: :html, method: :diffusion, type: :string }) # edit new({ renderer: :html, method: :edit }) do |params| html.attr(:contenteditable, params) html.update_data(params) end new({ method: :clean, renderer: :html, type: :hash }) do |params| html.table_clean(params) end new({ method: :insert, renderer: :html, type: :hash }) do |params| html.table_insert(params) end new({ method: :remove, renderer: :html, type: :hash }) do |params| # alert "===> #{params}" # html.table_remove(params) html.remove(params) end new({ method: :sort, renderer: :html, type: :hash }) do |params| html.refresh_table(params) end new({ method: :inside, renderer: :html }) do |params| if params affect.each do |at_found| grab(at_found).html.style("box-sizing", 'border-box') end else html.style("boxSizing", ' content-box') end end
Version data entries
17 entries across 17 versions & 1 rubygems