Sha256: 4e3b437e587e2295c62a795d17600a004477c0fa764131a6ac2c57154cfdef90

Contents?: true

Size: 761 Bytes

Versions: 1

Compression:

Stored size: 761 Bytes

Contents

controller :my_controller do
  spots "content"

  action :index do
    on_entry %{
      on_entry_base_pointer = __base__;
      Embed("my_controller2", "content", {});
    }

    on "next_clicked", %{
      Push("other")
    }

  end

  action :other do
    on_entry %{
      Embed("my_controller3", "content", {});
    }
  end
end

controller :my_controller2 do
  action :index do
    on_entry %{
      on_entry_base_pointer2 = __base__;
    }

    on "next_clicked", %{
      Push("other2")
    }

    on "olah", %{
    }

  end

  action :other2 do
    on "test", %{
    }

    on "next_clicked", %{
      Push("index")
    }
  end
end


controller :my_controller3 do
  action :index do
    on_entry %{
      my_controller3_base = __base__;
    }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
flok-0.0.105 spec/kern/assets/hook_entry_points/controller_0b_push2.rb