Fixed cursor hover on list columns. Where ng-click appeared the href tag was missing, which caused the cursor to not change.

This commit is contained in:
Chris Houseknecht 2014-04-02 11:48:43 -04:00
parent d190aa3001
commit 0d18e85ba3
4 changed files with 5 additions and 5 deletions

View File

@ -45,7 +45,7 @@ angular.module('QueuedJobsDefinition', [])
},
created: {
label: 'Created On',
link: false,
noLink: true,
searchable: false,
filter: "date:'MM/dd/yy HH:mm:ss'",
columnClass: 'col-md-2 hidden-xs'

View File

@ -45,7 +45,7 @@ angular.module('RunningJobsDefinition', [])
},
started: {
label: 'Started On',
link: false,
noLink: true,
searchable: false,
filter: "date:'MM/dd/yy HH:mm:ss'",
columnClass: "col-md-2 hidden-xs"

View File

@ -33,7 +33,7 @@ angular.module('ScheduledJobsDefinition', [])
},
next_run: {
label: 'Next Run',
link: false,
noLink: true,
searchable: false,
columnClass: "col-md-2 hidden-xs",
filter: "date:'MM/dd/yy HH:mm:ss'",
@ -42,7 +42,7 @@ angular.module('ScheduledJobsDefinition', [])
},
type: {
label: 'Type',
link: false,
noLink: true,
columnClass: "col-md-2 hidden-sm hidden-xs",
sourceModel: 'unified_job_template',
sourceField: 'job_type',

View File

@ -453,7 +453,7 @@ angular.module('GeneratorHelpers', [])
if (field.linkTo) {
html += "<a href=\"" + field.linkTo + "\" ";
} else if (field.ngClick) {
html += "<a hef=\"\" " + Attr(field, 'ngClick') + " ";
html += "<a href=\"\" " + Attr(field, 'ngClick') + " ";
} else if (field.ngHref) {
html += "<a ng-href=\"" + field.ngHref + "\" ";
} else if (field.link || (field.key && (field.link === undefined || field.link))) {