paulvales
12/5/2016 - 4:04 PM

выполнение js скриптов framework7


$$(document).on('pageInit', function(e) {
var page = e.detail.page;
$$(page.container).find('script').each(function(el) {
if ($$(this).attr('src')) {
$.getScript($(this).attr('src')); 
} else {
eval($$(this).text());
}})
 
 })