Skip to content

Commit 99601ca

Browse files
author
Valentin Hervieu
committed
Fix variables.less import.
1 parent aae926e commit 99601ca

9 files changed

+16
-15
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name"0.1.36"></a>
2+
### 0.1.36 (2015-10-12)
3+
4+
#### Features
5+
6+
* Separate the LESS variables from the main file to ease versioning of local customisations.
7+
8+
19
<a name"0.1.35"></a>
210
### 0.1.35 (2015-10-08)
311

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-slider",
3-
"version": "0.1.35",
3+
"version": "0.1.36",
44
"homepage": "https://github.com/rzajac/angularjs-slider",
55
"authors": [
66
"Rafal Zajac <[email protected]>",

dist/rzslider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* (c) Rafal Zajac <[email protected]>
55
* http://github.com/rzajac/angularjs-slider
66
*
7-
* Version: v0.1.35
7+
* Version: v0.1.36
88
*
99
* Licensed under the MIT license
1010
*/

dist/rzslider.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jusas-angularjs-slider",
3-
"version": "0.1.35",
3+
"version": "0.1.36",
44
"description": "AngularJS slider directive with no external dependencies. Mobile friendly!.",
55
"main": "dist/rzslider.js",
66
"repository": {

src/rzslider.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* (c) Rafal Zajac <[email protected]>
55
* http://github.com/rzajac/angularjs-slider
66
*
7-
* Version: v0.1.35
7+
* Version: v0.1.36
88
*
99
* Licensed under the MIT license
1010
*/

src/rzslider.less

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* Licensed under the MIT license
88
*/
99

10+
@import 'variables.less';
11+
1012
rzslider {
1113

1214
display: inline-block;

src/variables.less

-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
/**
2-
* Angular JS slider directive
3-
*
4-
* (c) Rafal Zajac <[email protected]>
5-
* http://github.com/rzajac/angularjs-slider
6-
*
7-
* Licensed under the MIT license
8-
*/
9-
101
.rounded(@radius: 2px) {
112
-webkit-border-radius: @radius;
123
-moz-border-radius: @radius;

0 commit comments

Comments
 (0)