You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
342 B
14 lines
342 B
12 years ago
|
'use strict';
|
||
12 years ago
|
define(
|
||
|
[
|
||
12 years ago
|
'Cells/TemplatedCell',
|
||
|
'Cells/Edit/QualityCellEditor'
|
||
|
], function (TemplatedCell, QualityCellEditor) {
|
||
12 years ago
|
return TemplatedCell.extend({
|
||
12 years ago
|
|
||
12 years ago
|
className: 'quality-cell',
|
||
12 years ago
|
template : 'Cells/QualityCellTemplate',
|
||
12 years ago
|
editor : QualityCellEditor
|
||
12 years ago
|
});
|
||
12 years ago
|
});
|