remove unused var

This commit is contained in:
rolux 2014-05-18 02:42:19 +02:00
parent c13dde17f2
commit 0f1fb7b154

View file

@ -702,7 +702,7 @@ Ox.TableList = function(options, self) {
// fixme: this may be obscure... // fixme: this may be obscure...
// since the format of a value may depend on another value, // since the format of a value may depend on another value,
// we pass all data as a second parameter to the supplied format function // we pass all data as a second parameter to the supplied format function
var format = self.format[key], formatFunction; var format = self.format[key];
// FIXME: this keeps null from ever reaching a format function! // FIXME: this keeps null from ever reaching a format function!
if (value === null) { if (value === null) {
value = ''; value = '';