urlscan video display looks weird
Design and Skin Customization
are you seeing the same issue here on this page? the url you pasted in here looks nice.
If you can show us a URL where its happening on I can see if I can see any CSS reason for it.
<?php
/**
* @copyright 2017 Talldude Networks, LLC.
*/
// make sure we are not being called directly
defined('APP_DIR') or exit();
/**
* meta
*/
function xxExternaljs_meta(){
$_tmp = array(
'name' => 'External Js',
'url' => 'externaljs',
'version' => '1.0.0',
'developer' => 'The Jamroom Network, ©' . strftime('%Y'),
'description' => 'include some javascript files',
'category' => 'custom',
'license' => 'mpl'
);
return $_tmp;
}
/**
* init
*/
function xxExternaljs_init(){
jrCore_register_module_feature('jrCore', 'javascript', 'xxExternaljs', 'somefile.js'); // includes /modules/xxExternaljs/js/somefile.js
jrCore_register_module_feature('jrCore', 'javascript', 'xxExternaljs', '//cdn.com/jqwidgets/jqxcore.js'); // includes http?://cdn.com/jqwidgets/jqxcore.js
return true;
}