Sha256: 719803b6e98c3c6fdecbb91e507ec0d5e5e1be5483bfecb11490697f34074a63
Contents?: true
Size: 840 Bytes
Versions: 9
Compression:
Stored size: 840 Bytes
Contents
module RubyApp module Elements module Mobile module Navigation require 'ruby_app/elements/mobile/list' require 'ruby_app/elements/mobile/navigation/navigation_link' class NavigationList < RubyApp::Elements::Mobile::List class NavigationListItem < RubyApp::Elements::Mobile::List::ListItem template_path(:all, File.dirname(__FILE__)) def initialize(script) super(script) self.attributes.merge!('data-icon' => 'arrow-r') end end template_path(:all, File.dirname(__FILE__)) attr_accessor :options def initialize super @options = RubyApp::Elements::Mobile::Navigation::NavigationLink.default_options end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems