Wiki page value changed with summary [] by Lauro Moura

This commit is contained in:
Lauro Moura 2015-12-07 11:54:13 -08:00 committed by apache
parent a696cc125e
commit 19389d7b44
1 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ var obj = new efl.value(value);
Parameters
* value - The value to be wrapped.
* value - The value to be wrapped. Currently, numerical and string types are supported.
Return type
@ -27,7 +27,7 @@ Creates a new value wrapper. It can be passed to the native functions and back.
Example usage
<code javascript>
var myvalue = efl.value(42);
var myvalue = new efl.value(42);
</code>
=== get() ===
@ -48,4 +48,4 @@ Syntax
valueobj.set(somevalue);
</code>
Replaces the wrapped value with the given value.
Replaces the wrapped value with the given value. You can set any of the supported values, there's no restriction on the value being of the type set on at the time of instantiation.