diff options
Diffstat (limited to 'apps/comments/src/app.js')
-rw-r--r-- | apps/comments/src/app.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/comments/src/app.js b/apps/comments/src/app.js new file mode 100644 index 00000000000..547059393a5 --- /dev/null +++ b/apps/comments/src/app.js @@ -0,0 +1,20 @@ +/* + * Copyright (c) 2016 Vincent Petry <pvince81@owncloud.com> + * + * This file is licensed under the Affero General Public License version 3 + * or later. + * + * See the COPYING-README file. + * + */ + +(function() { + if (!OCA.Comments) { + /** + * @namespace + */ + OCA.Comments = {}; + } + +})(); + |