Skip to content

Commit

Permalink
Merge branch 'master-2.22'
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Sep 22, 2019
2 parents 25110fd + 72ff745 commit eb8494d
Show file tree
Hide file tree
Showing 7 changed files with 235 additions and 63 deletions.
4 changes: 2 additions & 2 deletions core/constant_inc.php
Expand Up @@ -646,8 +646,8 @@
define( 'JQUERY_HASH', 'sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=' );

# Bootstrap & FontAwesome
define( 'BOOTSTRAP_VERSION', '3.4.0' );
define( 'BOOTSTRAP_HASH', 'sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw' );
define( 'BOOTSTRAP_VERSION', '3.4.1' );
define( 'BOOTSTRAP_HASH', 'sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu' );
define( 'FONT_AWESOME_VERSION', '4.6.3' );

# Moment & DateTimePicker
Expand Down
6 changes: 3 additions & 3 deletions core/layout_api.php
Expand Up @@ -253,8 +253,8 @@ function layout_head_meta() {
function layout_head_css() {
# bootstrap & fontawesome
if ( config_get_global( 'cdn_enabled' ) == ON ) {
html_css_cdn_link( 'https://maxcdn.bootstrapcdn.com/bootstrap/' . BOOTSTRAP_VERSION . '/css/bootstrap.min.css' );
html_css_cdn_link( 'https://maxcdn.bootstrapcdn.com/font-awesome/' . FONT_AWESOME_VERSION . '/css/font-awesome.min.css' );
html_css_cdn_link( 'https://stackpath.bootstrapcdn.com/bootstrap/' . BOOTSTRAP_VERSION . '/css/bootstrap.min.css' );
html_css_cdn_link( 'https://stackpath.bootstrapcdn.com/font-awesome/' . FONT_AWESOME_VERSION . '/css/font-awesome.min.css' );

# theme text fonts
$t_font_family = config_get( 'font_family', null, null, ALL_PROJECTS );
Expand Down Expand Up @@ -306,7 +306,7 @@ function layout_user_font_preference() {
function layout_body_javascript() {
if ( config_get_global( 'cdn_enabled' ) == ON ) {
# bootstrap
html_javascript_cdn_link( 'https://maxcdn.bootstrapcdn.com/bootstrap/' . BOOTSTRAP_VERSION . '/js/bootstrap.min.js', BOOTSTRAP_HASH );
html_javascript_cdn_link( 'https://stackpath.bootstrapcdn.com/bootstrap/' . BOOTSTRAP_VERSION . '/js/bootstrap.min.js', BOOTSTRAP_HASH );

# moment & datetimepicker
html_javascript_cdn_link( 'https://cdnjs.cloudflare.com/ajax/libs/moment.js/' . MOMENT_VERSION . '/moment-with-locales.min.js', MOMENT_HASH );
Expand Down
6 changes: 3 additions & 3 deletions css/bootstrap-3.4.0.css → css/bootstrap-3.4.1.css
@@ -1,6 +1,6 @@
/*!
* Bootstrap v3.4.0 (https://getbootstrap.com/)
* Copyright 2011-2018 Twitter, Inc.
* Bootstrap v3.4.1 (https://getbootstrap.com/)
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
Expand Down Expand Up @@ -6831,4 +6831,4 @@ button.close {
display: none !important;
}
}
/*# sourceMappingURL=bootstrap.css.map */
/* sourceMappingURL=bootstrap.css.map */
6 changes: 3 additions & 3 deletions css/bootstrap-3.4.0.min.css → css/bootstrap-3.4.1.min.css

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions js/bootstrap-3.4.0.min.js

This file was deleted.

0 comments on commit eb8494d

Please sign in to comment.