Skip to content

Instantly share code, notes, and snippets.

@ssbreno
Last active August 29, 2015 14:25
Show Gist options
  • Save ssbreno/25a2321d9aa3af277691 to your computer and use it in GitHub Desktop.
Save ssbreno/25a2321d9aa3af277691 to your computer and use it in GitHub Desktop.
#Test Level Formula
# Telerik Kendo UI Calculator
txtcalc:"",
calculo:null,
Calcc : function(e){
if (!this.txtcalc) {
navigator.notification.alert("Write your level:");
return;
}
calculo = ((50 * Math.pow(this.txtcalc,3) / 3) - (100 * Math.pow(this.txtcalc,2)) + (850 * this.txtcalc / 3) - 200);
console.log(calculo);
this.set("calculo", calculo);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment