UNPKG

test-isc

Version:

An Ionic component similar to Ionic Select, that allows to search items, including async search, group, add, edit, delete items, and much more.

29 lines (22 loc) 1.01 kB
(function(doc){ var scriptElm = doc.scripts[doc.scripts.length - 1]; var warn = ['[ionic-selectable] Deprecated script, please remove: ' + scriptElm.outerHTML]; warn.push('To improve performance it is recommended to set the differential scripts in the head as follows:') var parts = scriptElm.src.split('/'); parts.pop(); parts.push('ionic-selectable'); var url = parts.join('/'); var scriptElm = doc.createElement('script'); scriptElm.setAttribute('type', 'module'); scriptElm.src = url + '/ionic-selectable.esm.js'; warn.push(scriptElm.outerHTML); scriptElm.setAttribute('data-stencil-namespace', 'ionic-selectable'); doc.head.appendChild(scriptElm); scriptElm = doc.createElement('script'); scriptElm.setAttribute('nomodule', ''); scriptElm.src = url + '/ionic-selectable.js'; warn.push(scriptElm.outerHTML); scriptElm.setAttribute('data-stencil-namespace', 'ionic-selectable'); doc.head.appendChild(scriptElm); console.warn(warn.join('\n')); })(document);