2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-24 23:41:59 +00:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'Cells/TemplatedCell'
|
|
|
|
], function (TemplatedCell) {
|
|
|
|
return TemplatedCell.extend({
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
className: 'quality-cell',
|
|
|
|
template : 'Cells/QualityTemplate'
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
});
|
2013-06-09 20:51:32 +00:00
|
|
|
});
|