Skip to content

Commit

Permalink
fix: double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
gregatsoon committed Apr 7, 2017
1 parent 95c7aa5 commit dc5528a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/js/projects/controllers/ProjectCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ angular.module("thisissoon.projects.ProjectCtrl", [

if ($scope.project.title === "Team Sky") {
$scope.project.webbyCode = $sce.trustAsHtml(
'<span id="webby-pv-2014-bug" style="position: fixed; z-index: 99999;\
top: 0; right: 0; width: 161px; height: 161px; margin: 0; padding: 0;">\
<iframe src="https://vote.webbyawards.com/sitebug?entryid=42782&\
display_rank=0&data=2017/websites/general-website/sports" \
style="position: relative; z-index: 99999; width: 161px; height: 161px;\
margin: 0; border: 0 none;" height="161" width="161" scrolling="no"\
frameborder="0" seamless></iframe></span>');
"<span id=\"webby-pv-2014-bug\" style=\"position: fixed; z-index: 99999;\
top: 0; right: 0; width: 161px; height: 161px; margin: 0; padding: 0;\">\
<iframe src=\"https://vote.webbyawards.com/sitebug?entryid=42782&\
display_rank=0&data=2017/websites/general-website/sports\" \
style=\"position: relative; z-index: 99999; width: 161px; height: 161px;\
margin: 0; border: 0 none;\" height=\"161\" width=\"161\" scrolling=\"no\"\
frameborder=\"0\" seamless></iframe></span>");
} else {
$scope.project.webbyCode = "";
}
Expand Down

0 comments on commit dc5528a

Please sign in to comment.