Skip to content
This repository was archived by the owner on Sep 11, 2020. It is now read-only.

Commit b2bc15f

Browse files
yoartsJackie Lord
authored andcommitted
Update to version 1.2.4, see change logs on readme.txt
1 parent 5440f32 commit b2bc15f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+317
-496
lines changed

assets/css/template.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/bootstrap-3.1.0.min.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

assets/js/bootstrap-3.1.1.min.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/functions.js

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1-
jQuery(document).ready(function() {
2-
jQuery('[data-toggle=offcanvas]').click(function() {
3-
jQuery('.row-offcanvas').toggleClass('active');
1+
jQuery(document).ready(function($) {
2+
$('.toggle-sidebar').click(function() {
3+
$('.row-offcanvas').toggleClass('active');
4+
});
5+
6+
$('.toggle-navigation').click(function() {
7+
$(this).toggleClass('open').next('#site-navigation').slideToggle(300);
8+
});
9+
10+
$('#site-navigation .sub-menu').before('<i class="fa fa-caret-right"></i>');
11+
12+
$('#site-navigation .fa').click(function() {
13+
$(this).toggleClass('open').next('ul').slideToggle(300);
414
});
515
});

assets/less/bootstrap-3.1.0/bootstrap.less

Lines changed: 0 additions & 49 deletions
This file was deleted.

assets/less/bootstrap-3.1.0/theme.less

Lines changed: 0 additions & 247 deletions
This file was deleted.
File renamed without changes.

assets/less/bootstrap-3.1.0/button-groups.less renamed to assets/less/bootstrap-3.1.1/button-groups.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696
//
9797
// Remix the default button sizing classes into new ones for easier manipulation.
9898

99-
.btn-group-xs > .btn { .btn-xs(); }
100-
.btn-group-sm > .btn { .btn-sm(); }
101-
.btn-group-lg > .btn { .btn-lg(); }
99+
.btn-group-xs > .btn { &:extend(.btn-xs); }
100+
.btn-group-sm > .btn { &:extend(.btn-sm); }
101+
.btn-group-lg > .btn { &:extend(.btn-lg); }
102102

103103

104104
// Split button dropdowns

0 commit comments

Comments
 (0)