Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mricharz_ext committed Nov 24, 2014
2 parents 9cb332f + d3f271c commit 58a1b9f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ com.nysoft.josie.core.BaseObject.extend('foo.bar.Foobar', {
function
object
null (without ') > no validation
complete classnames like: com.nysoft.josie.core.Control
and collections with []-suffix like: number[] or com.nysoft.josie.core.Control[]
and more. see native javascript types as reference
*/
}
Expand Down Expand Up @@ -117,6 +119,17 @@ Josie.require('http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js');

*A script will only be loaded once! If this is already loaded, _Josie.require_ will skip without an error.*

Alias:
------

You can create namespace aliases to shorten namespace-names.
You can use this aliases also in HTML-Decleration.
```javascript
Josie.alias('ui', 'com.nysoft.josie.ui');

var text = new ui.Text();
```

Events:
-------

Expand Down

0 comments on commit 58a1b9f

Please sign in to comment.