Я следую одному из шаблонов bootstrap
и занимаюсь следующей проблемой:
Шаблон
<div class="col-lg-4 col-sm-6">
<a class="portfolio-box" href="img/portfolio/fullsize/1.jpg">
<img class="img-fluid" src="img/portfolio/thumbnails/1.jpg" alt="">
<div class="portfolio-box-caption">
<div class="project-category text-white-50">
Category
</div>
<div class="project-name">
Project Name
</div>
</div>
</a>
</div>
Моя проблема заключается вследующее:
`href` in the `<a>` seems to shows in a modal the image in a bigger size, but I am trying to use it as a variable.
Я пытался использовать ng-ref="myvariable"
, но это не происходит (либо ошибка)
Как я мог это сделать?