CodingMindsAcademy / CodingMindsAcademy.github.io

Learn coding with fun.
https://codingmindsacademy.com
2 stars 3 forks source link

Fix a small bug #22

Closed sunyu912 closed 6 years ago

sunyu912 commented 6 years ago

I have fixed it in the tempalte pages, but we need to update it in all the other pages: "src" => "ng-src"

Change:

<div class="background-image-holder">
    <img alt="background" src="{{cd.bgImageUrl}}" />
</div>

into:

<div class="background-image-holder">
    <img alt="background" ng-src="{{cd.bgImageUrl}}" />
</div>
cassilam commented 6 years ago

Updated "src" to "ng-src" for the bgImageUrl

sunyu912 commented 6 years ago

Thanks Cassi!