Sha256: 19ca1e5c9259f7aac4c12609e47a77fef8bfd2303a7a984f388aed894af63a09
Contents?: true
Size: 479 Bytes
Versions: 39
Compression:
Stored size: 479 Bytes
Contents
module Isomorfeus class << self attr_reader :store_initialized attr_reader :store def init_store return if store_initialized @store_initialized = true force_init_store! end def force_init_store! # at least one reducer must have been added at this stage # this happened in isomorfeus-react.rb, where the component reducers were added @store = Redux::Store.init! `Opal.Isomorfeus.store = #@store` end end end
Version data entries
39 entries across 39 versions & 1 rubygems