Sha256: 57cd4c0b6e0471eb2b3036b1ab715eb30d447fc7a0a0c322d55cd9aac2c0de52

Contents?: true

Size: 518 Bytes

Versions: 4

Compression:

Stored size: 518 Bytes

Contents

function confirmReset() {
  var agree = confirm("This will delete all data for this experiment?");
  return agree ? true : false;
}

function confirmDelete() {
  var agree = confirm("Are you sure you want to delete this experiment and all its data?");
  return agree ? true : false;
}

function confirmWinner() {
  var agree = confirm("This will now be returned for all users. Are you sure?");
  return agree ? true : false;
}

function confirmStep(step) {
  var agree = confirm(step);
  return agree ? true : false;
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
split-0.7.0 lib/split/dashboard/public/dashboard.js
split-0.6.6 lib/split/dashboard/public/dashboard.js
split-0.6.5 lib/split/dashboard/public/dashboard.js
split-0.6.4 lib/split/dashboard/public/dashboard.js