Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add bootstrap-datepicker-1.5.1
  • Loading branch information
brp14005 committed Feb 3, 2016
1 parent 238a5f5 commit 9478d92
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions global_header_no_sidebar.php
Expand Up @@ -18,14 +18,17 @@ $JQPath = $Path . 'lib/jquery/jquery-2.2.0.min.js';
$bsJSPath = $Path . 'lib/bootstrap-3.3.6-dist/js/bootstrap.min.js';
$customJSPath = $Path . 'lib/js/custom.js';
$alertJSPath = 'https://alert.uconn.edu/alert/alert.js';
$mainJS = array($modernJSPath, $JQPath, $bsJSPath, $customJSPath);
$datePickerJSPath = $Path . 'lib/bootstrap-datepicker-1.5.1-dist/js/bootstrap-datepicker.min.js';
$mainJS = array($modernJSPath, $JQPath, $bsJSPath, $customJSPath, $datePickerJSPath);
$resultJS = isset($JS) ? array_merge($mainJS, $JS) : $mainJS;

/* CSS External Libraries */
$bsCSSPath = $Path . 'lib/bootstrap-3.3.6-dist/css/bootstrap.min.css';
$styleCSSPath = $Path . 'lib/css/style.css';
$commonCSSPath = $Path . 'lib/css/common.css';
$ucPrintCSSPath = $Path . 'lib/css/uc-print.css'; // not sure why this is left out
$mainCS = array($bsCSSPath, $styleCSSPath, $commonCSSPath);
$datePickerCSSPath = $Path . 'lib/bootstrap-datepicker-1.5.1-dist/css/bootstrap-datepicker.min.css';
$mainCS = array($bsCSSPath, $styleCSSPath, $commonCSSPath, $datePickerCSSPath);
$resultCS = isset($CS) ? array_merge($mainCS, $CS) : $mainCS;

/* Menu Items
Expand Down

0 comments on commit 9478d92

Please sign in to comment.