mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
Removed unusued parameters in BS table formmatters
This commit is contained in:
parent
f5bf6a0beb
commit
3662a58ad8
|
@ -435,7 +435,7 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function trueFalseFormatter(value, row) {
|
function trueFalseFormatter(value) {
|
||||||
if ((value) && ((value == 'true') || (value == '1'))) {
|
if ((value) && ((value == 'true') || (value == '1'))) {
|
||||||
return '<i class="fa fa-check text-success"></i>';
|
return '<i class="fa fa-check text-success"></i>';
|
||||||
} else {
|
} else {
|
||||||
|
@ -443,25 +443,25 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function dateDisplayFormatter(value, row) {
|
function dateDisplayFormatter(value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
return value.formatted;
|
return value.formatted;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function iconFormatter(value, row) {
|
function iconFormatter(value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
return '<i class="' + value + '"></i>';
|
return '<i class="' + value + ' icon-med"></i>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function emailFormatter(value, row) {
|
function emailFormatter(value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
return '<a href="mailto:' + value + '"> ' + value + '</a>';
|
return '<a href="mailto:' + value + '"> ' + value + '</a>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function linkFormatter(value, row) {
|
function linkFormatter(value) {
|
||||||
if (value) {
|
if (value) {
|
||||||
return '<a href="' + value + '"> ' + value + '</a>';
|
return '<a href="' + value + '"> ' + value + '</a>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue