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
Tatuya Kamada
gitlab-ce
Commits
32de6691
Commit
32de6691
authored
Aug 13, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7189 from skv-headless/fix_duplicate_event_loading
prevent events duplication loading
parents
e24589a1
de6a1a3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
12 deletions
+10
-12
app/assets/javascripts/pager.js.coffee
app/assets/javascripts/pager.js.coffee
+10
-12
No files found.
app/assets/javascripts/pager.js.coffee
View file @
32de6691
@
Pager
=
limit
:
0
offset
:
0
disable
:
false
init
:
(
limit
,
preload
)
->
@
limit
=
limit
init
:
(
@
limit
=
0
,
preload
,
@
disable
=
false
)
->
@
loading
=
$
(
".loading"
)
if
preload
@
offset
=
0
@
getOld
()
else
@
offset
=
limit
@
offset
=
@
limit
@
initLoadMore
()
getOld
:
->
$
(
".loading"
)
.
show
()
@
loading
.
show
()
$
.
ajax
type
:
"GET"
url
:
location
.
href
data
:
"limit="
+
@
limit
+
"&offset="
+
@
offset
complete
:
-
>
$
(
".loading"
)
.
hide
()
complete
:
=
>
@
loading
.
hide
()
success
:
(
data
)
->
Pager
.
append
(
data
.
count
,
data
.
html
)
dataType
:
"json"
...
...
@@ -39,6 +36,7 @@
ceaseFire
:
->
Pager
.
disable
callback
:
(
i
)
->
$
(
".loading"
).
show
()
Pager
.
getOld
()
callback
:
(
i
)
=>
unless
@
loading
.
is
(
':visible'
)
@
loading
.
show
()
Pager
.
getOld
()
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