jsinstrument 0.1.2 → 0.1.3
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.
- data/lib/jsinstrument/inserting.js +6 -0
- data/lib/jsinstrument/version.rb +1 -1
- metadata +1 -1
|
@@ -99,6 +99,12 @@
|
|
|
99
99
|
this._uploading = false;
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
|
+
/**
|
|
103
|
+
* force upload despite if it is uploading
|
|
104
|
+
*/
|
|
105
|
+
force_upload: function(mark, case_name, case_action) {
|
|
106
|
+
this.upload(mark, case_name, case_action, true);
|
|
107
|
+
}
|
|
102
108
|
/**
|
|
103
109
|
* serialize data for data uploading
|
|
104
110
|
*/
|
data/lib/jsinstrument/version.rb
CHANGED