Skip to content

Commit

Permalink
Merge pull request #188 from teabreakninja/master
Browse files Browse the repository at this point in the history
Mixed missing view
  • Loading branch information
magicbug committed Feb 15, 2016
2 parents 88f40c2 + 70a5945 commit 4f03eba
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions application/views/awards/dxcc/details.php
@@ -0,0 +1,40 @@
<script type="text/javascript" src="<?php echo base_url() ;?>/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>

<script type="text/javascript" src="<?php echo base_url() ;?>/fancybox/jquery.fancybox-1.3.4.pack.js"></script>

<link rel="stylesheet" type="text/css" href="<?php echo base_url() ;?>/fancybox/jquery.fancybox-1.3.4.css" media="screen" />

<script type="text/javascript">
$(document).ready(function() {
$(".qsobox").fancybox({
'autoDimensions' : false,
'width' : 700,
'height' : 300,
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'type' : 'iframe'
});

$(".editbox").fancybox({
'autoDimensions' : false,
'width' : 600,
'height' : 550,
'transitionIn' : 'fade',
'transitionOut' : 'fade',
'type' : 'iframe',
onCleanup : function() {
return window.location.reload();
}
});

});
</script>


<div id="container">

<h2>Logbook</h2>

<h3>Filtering on <?php echo $filter ?></h3>

<?php $this->load->view('view_log/partial/log') ?>

0 comments on commit 4f03eba

Please sign in to comment.