Having an issue with UI on Bootstrap in SharePoint 2013. I have ensured that all CSS and JS file paths are correct, but when I change the CDN link using Firebug, it works fine (only functional through Firebug). I'm puzzled as to why it's not working directly from SharePoint. Can anyone please help me?
File Paths:
<link href="../../_layouts/15/Site/css/bootstrap.min.css" rel="stylesheet">
<script src="../../_layouts/15/Site/js/jquery.min.js" type="text/javascript"></script>
<script src="../../_layouts/15/Site/js/bootstrap.min.js" type="text/javascript"></script>
CDN:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
The CDN only works when changed via Firebug. It still doesn't function properly from SharePoint even after compiling.