poi-plugin-milk 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,7 +45,7 @@
45
45
  <entry file="file://$PROJECT_DIR$/parts/countup-timer.js">
46
46
  <provider selected="true" editor-type-id="text-editor">
47
47
  <state relative-caret-position="861">
48
- <caret line="98" column="77" lean-forward="true" selection-start-line="98" selection-start-column="77" selection-end-line="98" selection-end-column="77" />
48
+ <caret line="98" column="23" lean-forward="false" selection-start-line="98" selection-start-column="23" selection-end-line="98" selection-end-column="23" />
49
49
  <folding />
50
50
  </state>
51
51
  </provider>
@@ -171,9 +171,9 @@
171
171
  <option value="$PROJECT_DIR$/parts/candidates.js" />
172
172
  <option value="$PROJECT_DIR$/parts/functions.js" />
173
173
  <option value="$PROJECT_DIR$/parts/fleet-list.js" />
174
- <option value="$PROJECT_DIR$/package.json" />
175
174
  <option value="$PROJECT_DIR$/index.js" />
176
175
  <option value="$PROJECT_DIR$/parts/countup-timer.js" />
176
+ <option value="$PROJECT_DIR$/package.json" />
177
177
  </list>
178
178
  </option>
179
179
  </component>
@@ -425,12 +425,12 @@
425
425
  <workItem from="1765331299194" duration="6136000" />
426
426
  <workItem from="1766556545515" duration="1427000" />
427
427
  <workItem from="1766996163960" duration="778000" />
428
- <workItem from="1767058525305" duration="7972000" />
428
+ <workItem from="1767058525305" duration="8249000" />
429
429
  </task>
430
430
  <servers />
431
431
  </component>
432
432
  <component name="TimeTrackingManager">
433
- <option name="totallyTimeSpent" value="45310000" />
433
+ <option name="totallyTimeSpent" value="45587000" />
434
434
  </component>
435
435
  <component name="ToolWindowManager">
436
436
  <frame x="140" y="22" width="3700" height="2138" extended-state="0" />
@@ -875,7 +875,7 @@
875
875
  <entry file="file://$PROJECT_DIR$/parts/countup-timer.js">
876
876
  <provider selected="true" editor-type-id="text-editor">
877
877
  <state relative-caret-position="861">
878
- <caret line="98" column="77" lean-forward="true" selection-start-line="98" selection-start-column="77" selection-end-line="98" selection-end-column="77" />
878
+ <caret line="98" column="23" lean-forward="false" selection-start-line="98" selection-start-column="23" selection-end-line="98" selection-end-column="23" />
879
879
  <folding />
880
880
  </state>
881
881
  </provider>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poi-plugin-milk",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Anchorage repair plugin for poi",
5
5
  "main": "index.es",
6
6
  "repository": {
@@ -96,7 +96,7 @@ class CountupTimer extends _react.Component {
96
96
  var min = Math.floor(this.timeElapsed/60);
97
97
  var sec = this.timeElapsed - min*60;
98
98
  var tstr = (min<10?('0'+min):min)+':'+(sec<10?('0'+sec):sec)
99
- var ne = '<h2><span class="label label-warning">'+tstr+'</span></h2>';
99
+ var ne = '<h3><span class="label label-warning">'+tstr+'</span></h3>';
100
100
  if(tsp.length==4){
101
101
  if(this.props.showMain==1){
102
102
  td1[0].innerHTML = td1[0].innerHTML+ne;