Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
41d9e2ef
Commit
41d9e2ef
authored
Jul 24, 2015
by
cahrens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dependency cleanup.
parent
2eae3681
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
common/static/common/js/spec/components/paginated_view_spec.js
+2
-1
common/static/common/js/spec/components/paging_collection_spec.js
+1
-1
common/static/common/js/spec/components/paging_footer_spec.js
+2
-1
common/static/common/js/spec/components/paging_header_spec.js
+2
-1
No files found.
common/static/common/js/spec/components/paginated_view_spec.js
View file @
41d9e2ef
define
([
'jquery'
,
'backbone'
,
'underscore'
,
'common/js/spec_helpers/ajax_helpers'
,
'common/js/components/views/paginated_view'
,
'common/js/components/collections/paging_collection'
],
function
(
Backbone
,
_
,
AjaxHelpers
,
PaginatedView
,
PagingCollection
)
{
],
function
(
$
,
Backbone
,
_
,
AjaxHelpers
,
PaginatedView
,
PagingCollection
)
{
'use strict'
;
describe
(
'PaginatedView'
,
function
()
{
var
TestItemView
=
Backbone
.
View
.
extend
({
...
...
common/static/common/js/spec/components/paging_collection_spec.js
View file @
41d9e2ef
...
...
@@ -239,7 +239,7 @@ define(['jquery',
}
expect
(
collection
.
getPage
()).
toBe
(
newPage
);
}
)
)
;
});
});
});
...
...
common/static/common/js/spec/components/paging_footer_spec.js
View file @
41d9e2ef
define
([
'jquery'
,
'URI'
,
'underscore'
,
'common/js/spec_helpers/ajax_helpers'
,
'common/js/components/views/paging_footer'
,
'common/js/components/collections/paging_collection'
],
function
(
URI
,
_
,
AjaxHelpers
,
PagingFooter
,
PagingCollection
)
{
],
function
(
$
,
URI
,
_
,
AjaxHelpers
,
PagingFooter
,
PagingCollection
)
{
'use strict'
;
describe
(
"PagingFooter"
,
function
()
{
var
pagingFooter
,
...
...
common/static/common/js/spec/components/paging_header_spec.js
View file @
41d9e2ef
define
([
'underscore'
,
'common/js/components/views/paging_header'
,
'common/js/components/collections/paging_collection'
],
function
(
PagingHeader
,
PagingCollection
)
{
],
function
(
_
,
PagingHeader
,
PagingCollection
)
{
'use strict'
;
describe
(
'PagingHeader'
,
function
()
{
var
pagingHeader
,
...
...
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