Sha256: 1bf8786d2008fd7eb511e585652b515fbb6f43fd8a19db5fa3bbd6a8c4bbb694

Contents?: true

Size: 547 Bytes

Versions: 103

Compression:

Stored size: 547 Bytes

Contents

module RubyApp

  module Elements

    module Mobile

      module Navigation
        require 'ruby_app/elements/mobile/link'

        class NavigationLink < RubyApp::Elements::Mobile::Link

          template_path(:all, File.dirname(__FILE__))

          attr_accessor :options

          def initialize
            super
            @options = RubyApp::Elements::Mobile::Navigation::NavigationLink.default_options
          end

          def self.default_options
            return {}
          end

        end

      end

    end

  end

end

Version data entries

103 entries across 103 versions & 1 rubygems

Version Path
RubyApp-0.5.59 lib/ruby_app/elements/mobile/navigation/navigation_link.rb
RubyApp-0.5.58 lib/ruby_app/elements/mobile/navigation/navigation_link.rb
RubyApp-0.5.57 lib/ruby_app/elements/mobile/navigation/navigation_link.rb