I want to attach this script : http://findify-assets-2bveeb6u8ag.netdna-ssl.com/search/prod/beatmed.com.min.js with RequireJS, but It destroys other scripts from require.
My js config:
var config = {
paths: {
"findify": "//findify-assets-2bveeb6u8ag.netdna-ssl.com/search/prod/beatmed.com.min",
"test": "////maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min"
},
}
require.config(config);
In HTML:
<script type="text/javascript">
require(['findify']);
</script>
I have problem with the findify script, the "test" loads without errors in console.
Console Errors:
This script loads also other files for example: beatmed.com.min.js

