diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-03 09:03:43 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-02-03 09:03:43 +0100 |
commit | d4b356e0e9e1de237c9a86c8a576291a3508aec4 (patch) | |
tree | 08abafedf15a509a68f3b12c279f5746cb78e0fe /apps/comments/js/app.js | |
parent | 77942ad38afb982c3b7efa841a9bb0b46a0c039a (diff) | |
parent | 5e08f1df78652e7a16de00041d376f55a4d2009e (diff) | |
download | nextcloud-server-d4b356e0e9e1de237c9a86c8a576291a3508aec4.tar.gz nextcloud-server-d4b356e0e9e1de237c9a86c8a576291a3508aec4.zip |
Merge pull request #21961 from owncloud/comments-gui
Comments GUI in files sidebar
Diffstat (limited to 'apps/comments/js/app.js')
-rw-r--r-- | apps/comments/js/app.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/comments/js/app.js b/apps/comments/js/app.js new file mode 100644 index 00000000000..547059393a5 --- /dev/null +++ b/apps/comments/js/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 = {}; + } + +})(); + |