Skip to content

Instantly share code, notes, and snippets.

@artemsvirskyi
Last active September 5, 2019 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artemsvirskyi/3f6babcb4746895b1c386290dba15d3a to your computer and use it in GitHub Desktop.
Save artemsvirskyi/3f6babcb4746895b1c386290dba15d3a to your computer and use it in GitHub Desktop.
values
$scope.paymentOptions = [
{name: "Regular user - first purchase", value: "upgrade"},
{name: "Regular user - add more players", value: "add.players"},
{name: "New Partner", value: "new.partner"},
{name: "New EDU Yearly Subscription", value: "new.edu"},
{name: "Templates ", value: "templates"},
{name: "Service", value: "service"},
{name: "Integration", value: "integration"},
];
$scope.paymentMethods = [
{name: "PayPal", value: "paypal"},
{name: "BlueSnap", value: "bluesnap"},
{name: "Check", value: "check"},
{name: "Wire", value: "wire"},
{name: "Other", value: "other"},
];
$scope.countries = [
{name: "Non-Israel", value: "US"},
{name: "Israel", value: "IL"}
];
$scope.paymentPeriods = [
{name: "Monthly", value: "month"},
{name: "Yearly", value: "year"},
{name: "One time", value: "one.time"},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment