mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
20 lines
610 B
HTML
20 lines
610 B
HTML
<!doctype html>
|
|
<html ng-app>
|
|
<head>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- BAD -->
|
|
<a href="{{help_url}}">Help</a>
|
|
<picture>
|
|
<source media="(min-width: 650px)" srcset="#/resources/pics-large/{{item._id}}">
|
|
<img src="#/resources/pics-default/{{item._id}}">
|
|
</picture>
|
|
<!-- GOOD -->
|
|
<a ng-href="{{help_url}}">Help</a>
|
|
<picture>
|
|
<source media="(min-width: 650px)" ng-srcset="#/resources/pics-large/{{item._id}}">
|
|
<img ng-src="#/resources/pics-default/{{item._id}}">
|
|
</picture>
|
|
</body>
|
|
</html> |