21 lines
293 B
JavaScript
21 lines
293 B
JavaScript
|
/*
|
||
|
* 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 = {};
|
||
|
}
|
||
|
|
||
|
})();
|
||
|
|