Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Tiny Tiny RSS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Server
Tiny Tiny RSS
Commits
4441fc6f
Commit
4441fc6f
authored
Jan 22, 2017
by
Andrew Dolgov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.tt-rss.org:fox/tt-rss
parents
967f0619
7262c172
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
js/feedlist.js
js/feedlist.js
+1
-1
js/functions.js
js/functions.js
+2
-2
js/prefs.js
js/prefs.js
+2
-2
js/tt-rss.js
js/tt-rss.js
+3
-3
js/viewfeed.js
js/viewfeed.js
+1
-1
No files found.
js/feedlist.js
View file @
4441fc6f
...
...
@@ -198,7 +198,7 @@ function feedlist_init() {
loading_set_progress
(
50
);
document
.
onkeydown
=
hotkey_handler
;
setTimeout
(
"
hotkey_prefix_timeout()
"
,
5
*
1000
);
setTimeout
(
hotkey_prefix_timeout
,
5
*
1000
);
if
(
!
getActiveFeedId
())
{
viewfeed
({
feed
:
-
3
});
...
...
js/functions.js
View file @
4441fc6f
...
...
@@ -668,7 +668,7 @@ function hotkey_prefix_timeout() {
Element
.
hide
(
'
cmdline
'
);
}
setTimeout
(
"
hotkey_prefix_timeout()
"
,
1000
);
setTimeout
(
hotkey_prefix_timeout
,
1000
);
}
catch
(
e
)
{
exception_error
(
"
hotkey_prefix_timeout
"
,
e
);
...
...
@@ -1325,7 +1325,7 @@ function unsubscribeFeed(feed_id, title) {
updateFeedList
();
}
else
{
if
(
feed_id
==
getActiveFeedId
())
setTimeout
(
"
viewfeed({feed:-5})
"
,
100
);
setTimeout
(
function
()
{
viewfeed
({
feed
:
-
5
})
}
,
100
);
if
(
feed_id
<
0
)
updateFeedList
();
}
...
...
js/prefs.js
View file @
4441fc6f
...
...
@@ -901,10 +901,10 @@ function init_second_stage() {
if
(
method
==
'
editFeed
'
)
{
var
param
=
getURLParam
(
'
methodparam
'
);
window
.
setTimeout
(
'
editFeed(
'
+
param
+
'
)
'
,
100
);
window
.
setTimeout
(
function
()
{
editFeed
(
param
)
}
,
100
);
}
setTimeout
(
"
hotkey_prefix_timeout()
"
,
5
*
1000
);
setTimeout
(
hotkey_prefix_timeout
,
5
*
1000
);
}
catch
(
e
)
{
exception_error
(
"
init_second_stage
"
,
e
);
...
...
js/tt-rss.js
View file @
4441fc6f
...
...
@@ -159,7 +159,7 @@ function viewCurrentFeed(method) {
function
timeout
()
{
if
(
getInitParam
(
"
bw_limit
"
)
!=
"
1
"
)
{
request_counters
();
setTimeout
(
"
timeout()
"
,
60
*
1000
);
setTimeout
(
timeout
,
60
*
1000
);
}
}
...
...
@@ -654,7 +654,7 @@ function init_second_stage() {
if
(
getInitParam
(
"
simple_update
"
))
{
console
.
log
(
"
scheduling simple feed updater...
"
);
window
.
setTimeout
(
"
update_random_feed()
"
,
30
*
1000
);
window
.
setTimeout
(
update_random_feed
,
30
*
1000
);
}
}
catch
(
e
)
{
...
...
@@ -1130,7 +1130,7 @@ function update_random_feed() {
parameters
:
"
op=rpc&method=updateRandomFeed
"
,
onComplete
:
function
(
transport
)
{
handle_rpc_json
(
transport
,
true
);
window
.
setTimeout
(
"
update_random_feed()
"
,
30
*
1000
);
window
.
setTimeout
(
update_random_feed
,
30
*
1000
);
}
});
}
catch
(
e
)
{
...
...
js/viewfeed.js
View file @
4441fc6f
...
...
@@ -2315,7 +2315,7 @@ function updateFloatingTitle(unread_only) {
function
catchupCurrentBatchIfNeeded
()
{
if
(
catchup_id_batch
.
length
>
0
)
{
window
.
clearTimeout
(
catchup_timeout_id
);
catchup_timeout_id
=
window
.
setTimeout
(
'
catchupBatchedArticles()
'
,
1000
);
catchup_timeout_id
=
window
.
setTimeout
(
catchupBatchedArticles
,
1000
);
if
(
catchup_id_batch
.
length
>=
10
)
{
catchupBatchedArticles
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment