| Date: Fri, 20 Nov 2015 11:29:13 +0100
split filler into two
Diffstat:
M js/history-form-prefiller.js | 5 ++++-
M pages/history.html | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
--- |
| t@@ -38,8 +38,10 @@ var PrefillMachine = {
$("#record_threshold_max").val("4.3");
}
+}
- prefill4isotopes: function() {
+var PrefillMachine2 = {
+ prefillCorrectly2: function() {
$("#sample_id").val("sample01");
$("#name").val("John Doe");
$("#email").val("john@doe.com");
t@@ -89,3 +91,4 @@ var PrefillMachine = {
// run the prefiller
PrefillMachine.prefillCorrectly();
+PrefillMachine2.prefillCorrectly2(); |