Skip to content

Commit

Permalink
fixed rtl issue and modified grunt-contrib-jshint options for newer v…
Browse files Browse the repository at this point in the history
…ersion
  • Loading branch information
prrashi committed Mar 27, 2017
1 parent fc4e204 commit a54f9cf
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 27 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Expand Up @@ -48,7 +48,8 @@ module.exports = function(grunt) {
}
, jshint: {
options: {
jshintrc: true
jshintrc: true,
reporterOutput: ""
}
, files: ["<%= config.srcDir %><%= config.name %>.js"]
}
Expand Down
2 changes: 1 addition & 1 deletion min/jquery.rateyo.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion min/jquery.rateyo.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion min/jquery.rateyo.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion min/jquery.rateyo.min.js.map

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions package.json
@@ -1,24 +1,24 @@
{
"name": "rateYo"
, "version": "2.2.0"
, "description": "A simple and flexible star rating plugin"
, "main": "js/jquery.rateyo.js"
, "repository": {
"type": "git"
, "url": "git://github.com/prrashi/rateYo.git"
}
, "author": "prashanth pamidi (https://github.com/prrashi)"
, "bugs": {
"url": "https://github.com/prrashi/rateYo/issues"
}
, "devDependencies": {
"grunt": "~0.4.5"
, "grunt-contrib-clean": "~0.6.0"
, "grunt-contrib-watch": "~0.6.1"
, "grunt-contrib-uglify": "~0.6.0"
, "grunt-contrib-less": "~0.12.0"
, "grunt-contrib-jshint": "~0.10.0"
, "matchdep": "~0.3.0"
}
, "homepage": "http://rateyo.fundoocode.ninja/"
"name": "rateYo",
"version": "2.2.0",
"description": "A simple and flexible star rating plugin",
"main": "js/jquery.rateyo.js",
"repository": {
"type": "git",
"url": "git://github.com/prrashi/rateYo.git"
},
"author": "prashanth pamidi (https://github.com/prrashi)",
"bugs": {
"url": "https://github.com/prrashi/rateYo/issues"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-less": "~0.12.0",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-watch": "~0.6.1",
"matchdep": "~0.3.0"
},
"homepage": "http://rateyo.fundoocode.ninja/"
}
1 change: 1 addition & 0 deletions src/jquery.rateyo.css
Expand Up @@ -7,6 +7,7 @@
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
direction: ltr;
}
.jq-ry-container[readonly="readonly"] {
cursor: default;
Expand Down
1 change: 1 addition & 0 deletions src/jquery.rateyo.less
Expand Up @@ -8,6 +8,7 @@
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
direction: ltr;

&[readonly="readonly"] {

Expand Down

0 comments on commit a54f9cf

Please sign in to comment.