push
github
56 of 145 branches covered (38.62%)
48 of 50 new or added lines in 5 files covered. (96.0%)
3395 existing lines in 78 files now uncovered.8599 of 20189 relevant lines covered (42.59%)
701.76 hits per line
UNCOV
1
|
/** @format */
|
|
UNCOV
2
|
|
× |
3 |
define([ |
× |
UNCOV
4
|
"dijit/form/CheckBox",
|
× |
UNCOV
5
|
"dojo/_base/declare",
|
× |
UNCOV
6
|
"dojo/on",
|
× |
UNCOV
7
|
"dojo/dom-class"
|
× |
UNCOV
8
|
], function (CheckBox, declare, on, domClass) {
|
× |
9 |
return declare("lsmb/journal/fx_checkbox", [CheckBox], { |
× |
UNCOV
10
|
postCreate: function () { |
× |
11 |
var self = this; |
× |
12 |
this.inherited(arguments); |
× |
13 |
on(this.domNode, "click", function () { |
× |
14 |
if (self.checked) {
|
× |
15 |
domClass.add("transaction-table", "fx-transaction"); |
× |
16 |
domClass.remove("transaction-table", "no-fx-transaction"); |
× |
UNCOV
17
|
} else {
|
× |
18 |
domClass.add("transaction-table", "no-fx-transaction"); |
× |
19 |
domClass.remove("transaction-table", "fx-transaction"); |
× |
UNCOV
20
|
} |
× |
UNCOV
21
|
}); |
× |
UNCOV
22
|
} |
× |
UNCOV
23
|
}); |
× |
UNCOV
24
|
}); |
× |