Skip to content

Commit 326460d

Browse files
committed
Updates to release v1.5.6
1 parent f1ce137 commit 326460d

14 files changed

+33
-27
lines changed

CHANGE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log: `bootstrap-checkbox-x`
22
==================================
33

4+
## Version 1.5.6
5+
6+
**Date**: 19-May-2021
7+
8+
- Update CDN version to use jsdelivr.
9+
410
## Version 1.5.5
511

612
**Date**: 02-Nov-2018

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 - 2018, Kartik Visweswaran
1+
Copyright (c) 2014 - 2021, Kartik Visweswaran
22
Krajee.com
33
All rights reserved.
44

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ With v1.5.5, the plugin now supports initializing widget on a SELECT input as we
4646
13. Allow third state to be configured (only on init) for two state checkboxes.
4747
14. Added support for displaying native checkboxes with tristate capability. When displaying native checkboxes, the advanced styling offerred by the plugin will not be available.
4848

49-
> NOTE: The latest version of the plugin v1.5.5 has been released. Refer the [CHANGE LOG](https://github.com/kartik-v/bootstrap-checkbox-x/blob/master/CHANGE.md) for details.
49+
> NOTE: The latest version of the plugin v1.5.6 has been released. Refer the [CHANGE LOG](https://github.com/kartik-v/bootstrap-checkbox-x/blob/master/CHANGE.md) for details.
5050
5151
## Documentation and Demo
5252

@@ -87,12 +87,12 @@ You can also manually install the plugin easily to your project. Just download t
8787
Step 1: Load the following assets in your header.
8888

8989
```html
90-
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
91-
<link href="path/to/css/checkbox-x.min.css" media="all" rel="stylesheet" type="text/css" />
92-
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
93-
<script src="path/to/js/checkbox-x.min.js" type="text/javascript"></script>
90+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
91+
<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-checkbox-x@1.5.6/css/checkbox-x.min.css" media="all" rel="stylesheet" type="text/css" />
92+
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
93+
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-checkbox-x@1.5.6/js/checkbox-x.min.js"></script>
9494
<!-- optional if you are using themes -->
95-
<link href="path/to/css/theme-krajee-flatblue.min.css" media="all" rel="stylesheet" type="text/css" />
95+
<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-checkbox-x@1.5.6/css/theme-krajee-flatblue.min.css" media="all" rel="stylesheet" type="text/css" />
9696
```
9797

9898
If you noticed, you need to load the `jquery.min.js` and `bootstrap.min.css` in addition to the `checkbox-x.min.css` and `checkbox-x.min.js` for

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-checkbox-x",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"homepage": "https://github.com/kartik-v/bootstrap-checkbox-x",
55
"authors": [
66
"Kartik Visweswaran <kartikv2@gmail.com>"

css/checkbox-x.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
3-
* @version 1.5.5
2+
* @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2021
3+
* @version 1.5.6
44
*
55
* An extended checkbox plugin for Bootstrap 3 that allows three states and additional styles.
66
*

css/checkbox-x.min.css

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

css/theme-krajee-flatblue.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
3-
* @version 1.5.5
2+
* @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2021
3+
* @version 1.5.6
44
*
55
* Krajee Flat Blue Theme for bootstrap-checkbox-x. Load this theme file after
66
* `checkbox-x.css` on your page.

css/theme-krajee-flatblue.min.css

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

examples/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8"/>
5-
<!-- @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
6-
@version 1.5.5 -->
5+
<!-- @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2021
6+
@version 1.5.6 -->
77
<title>Krajee JQuery Plugins - &copy; Kartik </title>
88
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
99
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

js/checkbox-x.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2018
3-
* @version 1.5.5
2+
* @copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2021
3+
* @version 1.5.6
44
*
55
* An extended checkbox plugin for bootstrap with three states and additional styles.
66
*

0 commit comments

Comments
 (0)