diff options
author | Jose Antonio Marquez | 2012-02-05 10:42:58 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-02-05 10:42:58 -0800 |
commit | 8c530e9291721083ba11746fc5b3da66dc692120 (patch) | |
tree | 937fae004df02bfb3769c1d696cd1109eff108bf /js/io/system/ninjalibrary.js | |
parent | d1fda420f898965b5dd57de0c8340886cef308a8 (diff) | |
download | ninja-8c530e9291721083ba11746fc5b3da66dc692120.tar.gz |
Setting up IO Ninja Library
This class will be used to copy locally the library needed for Ninja's IO.
Diffstat (limited to 'js/io/system/ninjalibrary.js')
-rw-r--r-- | js/io/system/ninjalibrary.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/js/io/system/ninjalibrary.js b/js/io/system/ninjalibrary.js new file mode 100644 index 00000000..3f8585ed --- /dev/null +++ b/js/io/system/ninjalibrary.js | |||
@@ -0,0 +1,29 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | /* ///////////////////////////////////////////////////////////////////// | ||
8 | //////////////////////////////////////////////////////////////////////// | ||
9 | NOTES: | ||
10 | //////////////////////////////////////////////////////////////////////// | ||
11 | ///////////////////////////////////////////////////////////////////// */ | ||
12 | // | ||
13 | var Montage = require("montage/core/core").Montage; | ||
14 | //////////////////////////////////////////////////////////////////////// | ||
15 | // | ||
16 | exports.NinjaLibrary = Montage.create(Object.prototype, { | ||
17 | //////////////////////////////////////////////////////////////////// | ||
18 | // | ||
19 | init: { | ||
20 | enumerable: true, | ||
21 | value: function() { | ||
22 | // | ||
23 | } | ||
24 | } | ||
25 | //////////////////////////////////////////////////////////////////// | ||
26 | //////////////////////////////////////////////////////////////////// | ||
27 | }); | ||
28 | //////////////////////////////////////////////////////////////////////// | ||
29 | //////////////////////////////////////////////////////////////////////// \ No newline at end of file | ||