Skip to content

Commit bd0b7f0

Browse files
committed
Fixed camelCase in custom themes
1 parent 54ed7dd commit bd0b7f0

File tree

5 files changed

+50
-15
lines changed

5 files changed

+50
-15
lines changed

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@
3636
"url": "https://github.com/lcdsantos/jQuery-Selectric.git"
3737
},
3838
"dependencies": {
39-
"jquery": ">=1.7"
39+
"jquery": "^2.1.4"
4040
},
4141
"devDependencies": {
42-
"gulp": "^3.8.11",
43-
"gulp-autoprefixer": "^2.1.0",
44-
"gulp-bump": "^0.3.0",
42+
"gulp": "^3.9.0",
43+
"gulp-autoprefixer": "^2.3.1",
44+
"gulp-bump": "^0.3.1",
4545
"gulp-connect": "^2.2.0",
4646
"gulp-csscomb": "^3.0.3",
47-
"gulp-gh-pages": "^0.5.0",
47+
"gulp-gh-pages": "^0.5.2",
4848
"gulp-header": "^1.2.2",
49-
"gulp-load-plugins": "^0.9.0",
50-
"gulp-rename": "^1.2.0",
51-
"gulp-sass": "^1.3.3",
52-
"gulp-uglify": "^1.1.0",
53-
"gulp-util": "^3.0.4",
49+
"gulp-load-plugins": "^0.10.0",
50+
"gulp-rename": "^1.2.2",
51+
"gulp-sass": "^2.0.1",
52+
"gulp-uglify": "^1.2.0",
53+
"gulp-util": "^3.0.5",
5454
"gulp-zip": "^3.0.2"
5555
}
5656
}

public/jquery.selectric.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* /,'
1010
* /'
1111
*
12-
* Selectric Ϟ v1.9.3 (Apr 23 2015) - http://lcdsantos.github.io/jQuery-Selectric/
12+
* Selectric Ϟ v1.9.3 (Jun 03 2015) - http://lcdsantos.github.io/jQuery-Selectric/
1313
*
1414
* Copyright (c) 2015 Leonardo Santos; Dual licensed: MIT/GPL
1515
*

public/jquery.selectric.min.js

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

public/themes/template/selectric.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
display: block;
8080
}
8181

82-
.selectricDisabled {
82+
.selectric-disabled {
8383
filter: alpha(opacity=50);
8484
opacity: 0.5;
8585
cursor: default;
@@ -101,7 +101,7 @@
101101
display: none;
102102
}
103103

104-
.selectricInput {
104+
.selectric-input {
105105
position: absolute !important;
106106
top: 0 !important;
107107
left: 0 !important;
@@ -117,7 +117,7 @@
117117
background: none !important;
118118
}
119119

120-
.selectricTempShow {
120+
.selectric-temp-show {
121121
position: absolute !important;
122122
visibility: hidden !important;
123123
display: block !important;

selectric.jquery.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "selectric",
3+
"version": "1.9.3",
4+
"title": "jQuery Selectric",
5+
"author": {
6+
"name": "Leonardo Santos",
7+
"email": "leocs.1991@gmail.com"
8+
},
9+
"licenses": [
10+
{
11+
"type": "MIT",
12+
"url": "http://opensource.org/licenses/MIT"
13+
},
14+
{
15+
"type": "GPL-3.0",
16+
"url": "http://opensource.org/licenses/GPL-3.0"
17+
}
18+
],
19+
"dependencies": {
20+
"jquery": ">=1.7"
21+
},
22+
"description": "Fast, simple and light jQuery plugin to customize HTML selects",
23+
"keywords": [
24+
"select",
25+
"selectbox",
26+
"dropdown",
27+
"form",
28+
"input",
29+
"ui"
30+
],
31+
"docs": "http://lcdsantos.github.io/jQuery-Selectric/",
32+
"demo": "http://lcdsantos.github.io/jQuery-Selectric/demo.html",
33+
"bugs": "https://github.com/lcdsantos/jQuery-Selectric/issues",
34+
"homepage": "http://lcdsantos.github.io/jQuery-Selectric/"
35+
}

0 commit comments

Comments
 (0)