Skip to content
This repository has been archived by the owner on Oct 4, 2022. It is now read-only.

Commit

Permalink
revert putting edition in images dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
omarreiss committed Oct 30, 2015
1 parent 783c830 commit e9481fb
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ module.exports = function( grunt ) {
grunt: "grunt/",
js: "js/",
css: "css/",
images: "images/",
get config() {
return this.grunt + "config/";
}
Expand Down
2 changes: 1 addition & 1 deletion css/analyzer.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}

.editIcon:hover {
background: #bbdefb url("images/editicon.png") no-repeat right top;
background: #bbdefb url("editicon.png") no-repeat right top;
cursor: pointer;
}

Expand Down
File renamed without changes
Binary file added dist/css/editicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions dist/yoast-seo.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ YoastSEO.Analyzer.prototype.runQueue = function() {
* perfect.
*/
output = {
"name": this.analyses[ currentQueueItem ].name,
"test": this.analyses[ currentQueueItem ].name,
"result": score
};
}
Expand Down Expand Up @@ -941,7 +941,7 @@ YoastSEO.AnalyzeScorer.prototype.totalScore = function() {
YoastSEO.AnalyzeScorer.prototype.addScoring = function( scoring ) {
var scoringObject = scoring.scoring;

scoringObject.scoringName = scoring.name;
scoringObject.scoreName = scoring.name;

this.scoring.push( scoringObject );
};
Expand Down
2 changes: 1 addition & 1 deletion dist/yoast-seo.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 dist/yoast-seo.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion grunt/config/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
options: {
noProcess:[ "**/*, png" ]
},
src: "<%= paths.images %>*.png",
src: "<%= paths.css %>*.png",
dest: "dist/"
} ]
}
Expand Down

0 comments on commit e9481fb

Please sign in to comment.