Merge branch 'master' into Bootstrap4

This commit is contained in:
Holger Könemann 2016-04-06 10:46:29 +02:00
commit 27dd486939
5 changed files with 10 additions and 2333 deletions

File diff suppressed because it is too large Load Diff

2
css/theme.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -57,7 +57,6 @@ gulp.task('cleancss', function() {
// Uglifies and concat all JS files into one
gulp.task('scripts', function() {
gulp.src([
basePaths.dev + 'js/jquery.min.js',
basePaths.dev + 'js/bootstrap3/bootstrap.min.js', //<--------- Change from /bootstrap3 to /bootstrap4 Watch out! just for testing in the moment!
basePaths.dev + 'js/owl.carousel.min.js',
basePaths.dev + 'js/skip-link-focus-fix.js'

View File

@ -6,13 +6,9 @@
*/
function understrap_scripts() {
wp_enqueue_style( 'understrap-theme', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.3.8');
// Unregister the default jQuery
wp_deregister_script('jquery');
wp_enqueue_script( 'understrap-main', get_template_directory_uri() . '/js/theme.min.js', array(), '0.3.8', true );
wp_enqueue_style( 'understrap-styles', get_stylesheet_directory_uri() . '/css/theme.min.css', array(), '0.3.8');
wp_enqueue_script('jquery');
wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), '0.3.8', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
@ -21,6 +17,7 @@ function understrap_scripts() {
add_action( 'wp_enqueue_scripts', 'understrap_scripts' );
// Removing the fuc!?$% emoji´s
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'wp_print_styles', 'print_emoji_styles' );

3
js/theme.min.js vendored Normal file

File diff suppressed because one or more lines are too long