aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Resources/static/themes/baggy/js/init.js
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-03-08 17:02:34 +0100
committerThomas Citharel <tcit@tcit.fr>2016-06-09 17:12:51 +0200
commit5ecdfcd041767c9e3244a92bb0a6cc3c3f80fea3 (patch)
tree03ee1eab0d89d1857daca9e273fd8c9ca47e33c2 /app/Resources/static/themes/baggy/js/init.js
parent9f95b14dec88cf083cefa38d5fbd84189e07acac (diff)
downloadwallabag-5ecdfcd041767c9e3244a92bb0a6cc3c3f80fea3.tar.gz
wallabag-5ecdfcd041767c9e3244a92bb0a6cc3c3f80fea3.tar.zst
wallabag-5ecdfcd041767c9e3244a92bb0a6cc3c3f80fea3.zip
manage assets through npm
first draft remote assetic totally work nearly there use at least nodejs > 0.12 use proper version of grunt bump nodejs version for travis update npm workaround for materialize install node 5.0 add grunt-cli baggy theme & cache node modules cache bower & npm make travis build assets on php7 only exclude installing node & npm if not needed & use bash clean & try to make icomoon work on baggy ready config for travis rebase make travis work more travis work impove travis & update deps add missing pixrem deps add module through oddly lost ui updates install latest nodejs add install_dev.sh, link local binaries for npm/bower/grunt ui improvements (mostly baggy) fix travis build no need to install on travis Add unread filter to entries pages Add the ability to filter for unread pages in the filters menu. Add unread filter test to EntryControllerTest Add a new test to the EntryControllerTest collection which checks that only entries which have not been archived (and are treated as "unread") are retrieved. Improve English translation Update FAQ -Fix grammar -Add notes about MTA, firewall, and SELinux Update installation instructions -Fix grammar -Add SELinux section add screenshots of android docu in English Fix the deletion of Tags/Entries relation when delete an entry Fix #2121 Move fixtures to the right place Display a message when saving an entry failed When saving an entry fail because of database error we previously just returned `false`. Now we got an error in the log and the displayed notice to the user is updated too. Change ManyToMany between entry & tag Following https://gist.github.com/Ocramius/3121916 Be sure to remove the related entity when removing an entity. Let say you have Entry -> EntryTag -> Tag. If you remove the entry: - before that commit, the EntryTag will stay (at least using SQLite). - with that commit, the related entity is removed Prepare wallabag 2.0.5 enforce older materialize version
Diffstat (limited to 'app/Resources/static/themes/baggy/js/init.js')
-rwxr-xr-xapp/Resources/static/themes/baggy/js/init.js101
1 files changed, 101 insertions, 0 deletions
diff --git a/app/Resources/static/themes/baggy/js/init.js b/app/Resources/static/themes/baggy/js/init.js
new file mode 100755
index 00000000..1721ae41
--- /dev/null
+++ b/app/Resources/static/themes/baggy/js/init.js
@@ -0,0 +1,101 @@
1var $ = global.jquery = require('jquery');
2require('jquery.cookie');
3require('jquery-ui');
4var annotator = require('annotator');
5
6
7$.fn.ready(function() {
8
9 var $listmode = $('#listmode'),
10 $listentries = $("#list-entries");
11
12 /* ==========================================================================
13 Menu
14 ========================================================================== */
15
16 $("#menu").click(function(){
17 $("#links").toggleClass('menu--open');
18 if ($('#content').hasClass('opacity03')) {
19 $('#content').removeClass('opacity03');
20 }
21 });
22
23 /* ==========================================================================
24 List mode or Table Mode
25 ========================================================================== */
26
27 $listmode.click(function(){
28 if ( jquery.cookie("listmode") == 1 ) {
29 // Cookie
30 $.removeCookie("listmode");
31
32 $listentries.removeClass("listmode");
33 $listmode.removeClass("tablemode");
34 $listmode.addClass("listmode");
35 }
36 else {
37 // Cookie
38 jquery.cookie("listmode", 1, {expires: 365});
39
40 $listentries.addClass("listmode");
41 $listmode.removeClass("listmode");
42 $listmode.addClass("tablemode");
43 }
44
45 });
46
47 /* ==========================================================================
48 Cookie listmode
49 ========================================================================== */
50
51 if ( jquery.cookie("listmode") == 1 ) {
52 $listentries.addClass("listmode");
53 $listmode.removeClass("listmode");
54 $listmode.addClass("tablemode");
55 }
56
57 /* ==========================================================================
58 Add tag panel
59 ========================================================================== */
60
61
62 $('#nav-btn-add-tag').on('click', function(){
63 $(".nav-panel-add-tag").toggle(100);
64 $(".nav-panel-menu").addClass('hidden');
65 $("#tag_label").focus();
66 return false;
67 });
68
69 /* ==========================================================================
70 Annotations & Remember position
71 ========================================================================== */
72
73 if ($("article").length) {
74 var app = new annotator.App();
75
76 app.include(annotator.ui.main, {
77 element: document.querySelector('article')
78 });
79
80 var x = JSON.parse($('#annotationroutes').html());
81 app.include(annotator.storage.http, x);
82
83 app.start().then(function () {
84 app.annotations.load({entry: x.entryId});
85 });
86
87 $(window).scroll(function(e){
88 var scrollTop = $(window).scrollTop();
89 var docHeight = $(document).height();
90 var scrollPercent = (scrollTop) / (docHeight);
91 var scrollPercentRounded = Math.round(scrollPercent*100)/100;
92 savePercent(x.entryId, scrollPercentRounded);
93 });
94
95 retrievePercent(x.entryId);
96
97 $(window).resize(function(){
98 retrievePercent(x.entryId);
99 });
100 }
101});