summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-02-27 14:53:07 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-09 14:33:51 +0000
commit16c03f85416a5959ac979d0abe7a5aac7f16a89d (patch)
treea03800dfdf115e1133194eb8d1e9ecb2afb3c5a0 /bitbake
parentdcbfc74c3ce9b69c020ed18ae42b8b27f8dc3991 (diff)
downloadpoky-16c03f85416a5959ac979d0abe7a5aac7f16a89d.tar.gz
bitbake: toasterui: don't open layer details in a new tab
In the project page, the project layer links were opening in a new tab. They should not do that. (Bitbake rev: 45d3c27e68149bce089551539f6bbdaef98b7896) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/project.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/project.html b/bitbake/lib/toaster/toastergui/templates/project.html
index 58b524eaa8..9fa682cf57 100644
--- a/bitbake/lib/toaster/toastergui/templates/project.html
+++ b/bitbake/lib/toaster/toastergui/templates/project.html
@@ -289,7 +289,7 @@ vim: expandtab tabstop=2
289 <a href="{% url 'importlayer' %}">Import layer</a></p> 289 <a href="{% url 'importlayer' %}">Import layer</a></p>
290 <ul class="unstyled configuration-list"> 290 <ul class="unstyled configuration-list">
291 <li ng-repeat="l in layers track by l.id" class="animate-repeat"> 291 <li ng-repeat="l in layers track by l.id" class="animate-repeat">
292 <a href="{[l.layerdetailurl]}" target="_#" class="layer-info" data-toggle="tooltip" tooltip="{[l.giturl]} | {[l.branch.name]}">{[l.name]}</a> 292 <a href="{[l.layerdetailurl]}" class="layer-info" data-toggle="tooltip" tooltip="{[l.giturl]} | {[l.branch.name]}">{[l.name]}</a>
293 <i class="icon-trash" ng-click="layerDel(l.id)" tooltip="Delete"></i> 293 <i class="icon-trash" ng-click="layerDel(l.id)" tooltip="Delete"></i>
294 </li> 294 </li>
295 </ul> 295 </ul>