Sha256: 71ed1aa75154d97b5b8819908fe9333abfa16718d7790a9f4d312e0f85aa267d
Contents?: true
Size: 721 Bytes
Versions: 43
Compression:
Stored size: 721 Bytes
Contents
module RubyApp module Elements module Mobile module Inputs require 'ruby_app/elements/mobile/input' class ToggleInput < RubyApp::Elements::Mobile::Input class ChangedEvent < RubyApp::Elements::Mobile::Input::ChangedEvent def initialize(data) super(data) @value = @value.to_b end end template_path(:all, File.dirname(__FILE__)) exclude_parent_template(:all) def initialize super self.attributes.delete('type') self.attributes.merge!('data-role' => 'slider') @value = false end end end end end end
Version data entries
43 entries across 43 versions & 1 rubygems