Skip to content

Commit

Permalink
Updated JS routes for deep URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
cdevroe committed Aug 18, 2015
1 parent 1c4db69 commit 548f954
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions application/views/layouts/footer_scripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

<?php $this->load->view('layouts/jsvars'); ?>

<script src="assets/libraries/jquery/jquery-2.1.0.min.js"></script>
<script src="assets/js/production/unmark.plugins.js?v=<?php echo ASSET_VERSION; ?>"></script>
<script src="assets/js/production/unmark.loggedin.js?v=<?php echo ASSET_VERSION; ?>"></script>
<script src="/assets/libraries/jquery/jquery-2.1.0.min.js"></script>
<script src="/assets/js/production/unmark.plugins.js?v=<?php echo ASSET_VERSION; ?>"></script>
<script src="/assets/js/production/unmark.loggedin.js?v=<?php echo ASSET_VERSION; ?>"></script>
4 changes: 2 additions & 2 deletions application/views/layouts/footer_unlogged_scripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
unmark.vars.csrf_token = '<?php print $csrf_token; ?>';
</script>

<script src="assets/libraries/jquery/jquery-2.1.0.min.js"></script>
<script src="assets/js/production/unmark.loggedout.js?v=<?php echo ASSET_VERSION; ?>"></script>
<script src="/assets/libraries/jquery/jquery-2.1.0.min.js"></script>
<script src="/assets/js/production/unmark.loggedout.js?v=<?php echo ASSET_VERSION; ?>"></script>

0 comments on commit 548f954

Please sign in to comment.