UNPKG

sce-component

Version:

22 lines (16 loc) 472 B
import Platform from './features/platform' export default function (callback = function () {}) { /* if on Cordova, but not on an iframe, like on Quasar Play app */ if (Platform.is.cordova && !Platform.within.iframe) { var tag = document.createElement('script') document.addEventListener('deviceready', callback, false) tag.type = 'text/javascript' document.body.appendChild(tag) tag.src = 'cordova.js' return } callback() }