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

Commit

Permalink
added sample text for baseURL and point to correct data for snippetCi…
Browse files Browse the repository at this point in the history
…te in the config
  • Loading branch information
terw-dan committed Oct 1, 2015
1 parent 73257d7 commit a1d805a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,12 @@ YoastSEO.App.prototype.createSnippetPreviewUrl = function( target ) {
var baseUrl = document.createElement( "cite" );
baseUrl.className = "url urlBase";
baseUrl.id = "snippet_citeBase";
baseUrl.textContent = this.config.sampleText.baseUrl;
elem.appendChild( baseUrl );
var cite = document.createElement( "cite" );
cite.className = "url";
cite.id = "snippet_cite";
cite.textContent = this.config.sampleText.url;
cite.textContent = this.config.sampleText.snippetCite;
cite.contentEditable = true;
elem.appendChild( cite );
};
Expand Down

0 comments on commit a1d805a

Please sign in to comment.