Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
5c307cf1
Commit
5c307cf1
authored
Mar 28, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo
parent
251240c0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
app/assets/javascripts/todos.js.coffee
app/assets/javascripts/todos.js.coffee
+6
-6
No files found.
app/assets/javascripts/todos.js.coffee
View file @
5c307cf1
...
...
@@ -79,21 +79,21 @@ class @Todos
# Do nothing if no pagination
return
if
!
currPages
# If new total of pages i
f
different than we have now
# If new total of pages i
s
different than we have now
if
newPages
isnt
currPages
# Redirect to previous page if there
´
s one available
# Redirect to previous page if there
'
s one available
if
currPages
>
1
and
currPage
is
currPages
url
=
@
updateQueryStringParameter
(
url
,
'page'
,
currPages
-
1
)
location
.
replace
url
updateQueryStringParameter
:
(
uri
,
key
,
value
)
->
separator
=
if
uri
.
indexOf
(
'?'
)
isnt
-
1
then
"&"
else
"?"
separator
=
if
uri
.
indexOf
(
'?'
)
isnt
-
1
then
'&'
else
'?'
# Matches key and value
regex
=
new
RegExp
(
"([?&])"
+
key
+
"=.*?(&|#|$)"
,
"i"
)
regex
=
new
RegExp
(
'([?&])'
+
key
+
'=.*?(&|#|$)'
,
'i'
)
if
uri
.
match
(
regex
)
return
uri
.
replace
(
regex
,
'$1'
+
key
+
"="
+
value
+
'$2'
)
return
uri
.
replace
(
regex
,
'$1'
+
key
+
'='
+
value
+
'$2'
)
uri
+
separator
+
key
+
"="
+
value
uri
+
separator
+
key
+
'='
+
value
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