Untitled
unknown
plain_text
2 years ago
588 B
3
Indexable
define( function( require ){
"use strict";
return {
discountModel: {
fields: {
first: {
name: "first",
value: "First"
second: {
name: "second",
value: "Second",
callback: function() {
if(Math.floor(Math.random() * 1) === 1) {
// change the value of fields.first to "not first"
}
}
}
}
}
}
}Editor is loading...
Leave a Comment