Categories

window.epkStack

Categories: Core

window.epkStack

Plugin: ep.epk

Description: A dependencies stack for the base packege.

  • window.epkStack

    version added: 6.11.1 version removed: 6.14.0
Attention: Not longer supported.

The ep.epk plugin is a basic indicator whether all plugins of the basic package are loaded. All dependencies must be in the window.epkStack, if all required plugins are loaded, the ep.epk plugin will execute .metaparse().

For inline scripting, the ep.epk plugin should be specified as a dependency in jQuery.ready() call.

  • Use ep.epk plugin.

    Code:
    window.epkStack = ['ep.modify', 'ep.core', 'ep.dict', 'ep.jQuery', 'ep.i18n'];
    
    jQuery.ready( 'ep.epk', function( $, undefined ){
        // Start your own code here, it will run after all plugins from the epkStack are available
    
    });