How to use the framework7/modules.json.core_intro function in framework7

To help you get started, we’ve selected a few framework7 examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bencompton / framework7-react / framework7-custom-build.js View on Github external
function getFw7Scripts() {
    var fw7CoreIntroScripts = fw7ModulesConfig.core_intro.js.map(prefixBasePath);
    var fw7CustomScripts = getCustomFw7Scripts();
    var fw7CoreOutroScripts = fw7ModulesConfig.core_outro.js.map(prefixBasePath);

    return fw7CoreIntroScripts.concat(fw7CustomScripts, fw7CoreOutroScripts);
}
github bencompton / framework7-react / framework7-custom-build.js View on Github external
function getFw7Scripts() {
    var fw7CoreIntroScripts = fw7ModulesConfig.core_intro.js.map(prefixBasePath);
    var fw7CustomScripts = getCustomFw7Scripts();
    var fw7CoreOutroScripts = fw7ModulesConfig.core_outro.js.map(prefixBasePath);

    return fw7CoreIntroScripts.concat(fw7CustomScripts, fw7CoreOutroScripts);
}