PluginProbe
Smart Forms – when you need more than just a contact form / 0.6
Smart Forms – when you need more than just a contact form v0.6
trunk 0.5 0.5.5 0.6 0.7 0.8 0.8.5 0.9.1
smart-forms / js / formBuilder / properties / manipulators.js

manipulators.js in Smart Forms – when you need more than just a contact form 0.6, at js/formBuilder/properties/manipulators.js

25 lines 635 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 "use strict;"
2
3
4 /************************************************************************************* Manipulstors ***************************************************************************************************/
5 function RedNaoBasicManipulator()
6 {
7
8 }
9
10 RedNaoBasicManipulator.prototype.GetValue=function(propertiesObject,propertyName,additionalInformation)
11 {
12 return propertiesObject[propertyName];
13 }
14
15 RedNaoBasicManipulator.prototype.SetValue=function(propertiesObject,propertyName,value,additionalInformation)
16 {
17 propertiesObject[propertyName]=value;
18 }
19
20
21
22
23
24 var RedNaoBasicManipulatorInstance=new RedNaoBasicManipulator();
25