How to use the uikit.version function in uikit

To help you get started, we’ve selected a few uikit 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 bezoerb / generator-sf / generators / view / uikit / templates / scripts / jspm / main.js View on Github external
import debugFn from 'debug';
import $ from 'jquery';
import UI from 'uikit';
import picturefill from 'picturefill';
import svg4everybody from 'svg4everybody';
import * as SW from './modules/service-worker';

let debug = debugFn('<%= props.safeAppame %>:main');
picturefill();
svg4everybody();

debug('\'Allo \'Allo');
debug('Running jQuery:', $().jquery);
debug('Running UIkit:', UI.version);

SW.init();
github bezoerb / generator-sf / generators / view / uikit / templates / scripts / requirejs / app.js View on Github external
exports.init = function () {
        debug('\'Allo \'Allo');
        debug('Running jQuery:', $().jquery);
        debug('Running UIkit:', UI.version);

        serviceWorker.init();
    };
});