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

Commit

Permalink
Merge branch 'master' into stories/DT/snippetpreviewUX
Browse files Browse the repository at this point in the history
Conflicts:
	dist/yoast-seo.min.js
  • Loading branch information
omarreiss committed Oct 1, 2015
2 parents 8776431 + c14144f commit 73257d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
### 1.0-beta2: September 23st, 2015
* Fixes a bug where the slug wasn't taken into account when checking if the url contains the focus keyword.

### 1.0-beta: September 21st, 2015
* Initial beta release
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yoast-seo",
"version": "1.0-beta",
"version": "1.0-beta2",
"homepage": "https://github.com/Yoast/yoast-seo",
"authors": [
"Yoast.com"
Expand Down
2 changes: 1 addition & 1 deletion dist/yoast-seo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2297,7 +2297,7 @@ YoastSEO.SnippetPreview.prototype.formatTitle = function() {
* @returns formatted url
*/
YoastSEO.SnippetPreview.prototype.formatUrl = function() {
var url = this.refObj.rawData.url;
var url = this.refObj.rawData.baseUrl;

//removes the http(s) part of the url
url.replace( /https?:\/\//ig, "" );
Expand Down
4 changes: 2 additions & 2 deletions dist/yoast-seo.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/snippetPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ YoastSEO.SnippetPreview.prototype.formatTitle = function() {
* @returns formatted url
*/
YoastSEO.SnippetPreview.prototype.formatUrl = function() {
var url = this.refObj.rawData.url;
var url = this.refObj.rawData.baseUrl;

//removes the http(s) part of the url
url.replace( /https?:\/\//ig, "" );
Expand Down

0 comments on commit 73257d7

Please sign in to comment.