Removed the Select button that was to the right of callback key on Job Template.

This commit is contained in:
chouseknecht
2013-06-27 15:59:48 -04:00
parent d387f013b7
commit 18ac049860
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ angular.module('JobEventsListDefinition', [])
fields: {
created: {
label: 'Creation Date',
label: 'Date',
key: true,
nosort: true,
notSearchable: true,

View File

@@ -34,7 +34,7 @@ angular.module('JobsListDefinition', [])
link: true
},
created: {
label: 'Creation Date',
label: 'Date',
link: true
},
status: {

View File

@@ -233,8 +233,8 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies'])
if (field.genMD5) {
html += " \n<button class=\"btn\" ng-click=\"genMD5('" + fld + "')\" " +
"aw-tool-tip=\"Generate " + field.label + "\" data-placement=\"top\" id=\"" + fld + "-gen-btn\"><i class=\"icon-repeat\"></i></button>\n";
html += " \n<button style=\"margin-left: 10px;\" class=\"btn\" ng-click=\"selectAll('" + fld + "')\" " +
"aw-tool-tip=\"Select " + field.label + " for copy\" data-placement=\"top\" id=\"" + fld + "-copy-btn\"><i class=\"icon-copy\"></i></button>\n";
/*html += " \n<button style=\"margin-left: 10px;\" class=\"btn\" ng-click=\"selectAll('" + fld + "')\" " +
"aw-tool-tip=\"Select " + field.label + " for copy\" data-placement=\"top\" id=\"" + fld + "-copy-btn\"><i class=\"icon-copy\"></i></button>\n";*/
html += "</div>\n";
}
if (field.ask) {