Merge pull request #1115 from opf/bug-5870-mouse-cursor-project-names

Put href attribs on project links so hand cursor is displayed.
pull/1129/head
Alex Coles 11 years ago
commit c8776632c0
  1. 2
      public/templates/timelines/timeline_table.html
  2. 2
      public/templates/timelines/toolbar.html

@ -50,7 +50,7 @@
</span>
<span>
<a modal title="{{row.text}}" target="row.url" ng-class="{'tl-discreet-link': true, 'tl-project': rowObjectType === 'Project'}">{{row.text}}</a>
<a href="" modal title="{{row.text}}" target="row.url" ng-class="{'tl-discreet-link': true, 'tl-project': rowObjectType === 'Project'}">{{row.text}}</a>
</span>
</span>
</td>

@ -1,6 +1,6 @@
<div class="tl-toolbar">
<div class="tl-toolbar-container">
<a ng-if='timeline.USE_MODALS' ng-click="timeline.addPlanningElement()" title="{{I18n.t('js.timelines.new_work_package')}}" class="icon icon-add">
<a href="javascript://" ng-if='timeline.USE_MODALS' ng-click="timeline.addPlanningElement()" title="{{I18n.t('js.timelines.new_work_package')}}" class="icon icon-add">
<span class="hidden-for-sighted">{{ I18n.t('js.timelines.new_work_package') }}</span>
</a>
</div>

Loading…
Cancel
Save