Completed
Push — master ( 199950...76b7f4 )
by Maxence
03:21
created

$(document).ready   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 1
nc 1
nop 0
1
/*
2
 * Bookmarks_FullTextSearch - Indexing bookmarks
3
 *
4
 * This file is licensed under the Affero General Public License version 3 or
5
 * later. See the COPYING file.
6
 *
7
 * @author Maxence Lange <[email protected]>
8
 * @copyright 2018
9
 * @license GNU AGPL version 3 or any later version
10
 *
11
 * This program is free software: you can redistribute it and/or modify
12
 * it under the terms of the GNU Affero General Public License as
13
 * published by the Free Software Foundation, either version 3 of the
14
 * License, or (at your option) any later version.
15
 *
16
 * This program is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
 * GNU Affero General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU Affero General Public License
22
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23
 *
24
 */
25
26
/** global: OCA */
27
/** global: bookmarks_elements */
28
/** global: bookmarks_settings */
29
30
31
$(document).ready(function () {
32
33
34
	/**
35
	 * @constructs Fts_Bookmarks
36
	 */
37
	var Fts_Bookmarks = function () {
38
		$.extend(Fts_Bookmarks.prototype, bookmarks_elements);
39
		$.extend(Fts_Bookmarks.prototype, bookmarks_settings);
40
41
		bookmarks_elements.init();
42
		bookmarks_settings.refreshSettingPage();
43
	};
44
45
	OCA.FullTextSearchAdmin.bookmarks = Fts_Bookmarks;
46
	OCA.FullTextSearchAdmin.bookmarks.settings = new Fts_Bookmarks();
47
48
});
49