Commit 85e9bbc2 by Brian Jacobel Committed by Andy Armstrong

Fix eslint indentation issues

parent e4d355a6
define(['backbone', 'jquery', 'underscore', 'edx-ui-toolkit/js/utils/spec-helpers/ajax-helpers', define([
'common/js/spec_helpers/template_helpers', 'course_bookmarks/js/views/bookmark_button' 'backbone', 'jquery', 'underscore', 'edx-ui-toolkit/js/utils/spec-helpers/ajax-helpers',
], 'common/js/spec_helpers/template_helpers', 'course_bookmarks/js/views/bookmark_button'
],
function(Backbone, $, _, AjaxHelpers, TemplateHelpers, BookmarkButtonView) { function(Backbone, $, _, AjaxHelpers, TemplateHelpers, BookmarkButtonView) {
'use strict'; 'use strict';
......
define(['backbone', define([
'jquery', 'backbone',
'underscore', 'jquery',
'logger', 'underscore',
'URI', 'logger',
'edx-ui-toolkit/js/utils/spec-helpers/ajax-helpers', 'URI',
'common/js/spec_helpers/template_helpers', 'edx-ui-toolkit/js/utils/spec-helpers/ajax-helpers',
'js/views/message_banner', 'common/js/spec_helpers/template_helpers',
'course_bookmarks/js/spec_helpers/bookmark_helpers', 'js/views/message_banner',
'course_bookmarks/js/views/bookmarks_list', 'course_bookmarks/js/spec_helpers/bookmark_helpers',
'course_bookmarks/js/collections/bookmarks'], 'course_bookmarks/js/views/bookmarks_list',
'course_bookmarks/js/collections/bookmarks'
],
function(Backbone, $, _, Logger, URI, AjaxHelpers, TemplateHelpers, MessageBannerView, function(Backbone, $, _, Logger, URI, AjaxHelpers, TemplateHelpers, MessageBannerView,
BookmarkHelpers, BookmarksListView, BookmarksCollection) { BookmarkHelpers, BookmarksListView, BookmarksCollection) {
'use strict'; 'use strict';
......
define(['jquery', define([
'edx-ui-toolkit/js/utils/spec-helpers/ajax-helpers', 'jquery',
'course_bookmarks/js/spec_helpers/bookmark_helpers', 'edx-ui-toolkit/js/utils/spec-helpers/ajax-helpers',
'course_bookmarks/js/course_bookmarks_factory' 'course_bookmarks/js/spec_helpers/bookmark_helpers',
], 'course_bookmarks/js/course_bookmarks_factory'
],
function($, AjaxHelpers, BookmarkHelpers, CourseBookmarksFactory) { function($, AjaxHelpers, BookmarkHelpers, CourseBookmarksFactory) {
'use strict'; 'use strict';
......
(function(define) { (function(define) {
'use strict'; 'use strict';
define(['gettext', 'jquery', 'underscore', 'backbone', 'logger', 'moment', 'edx-ui-toolkit/js/utils/html-utils', define([
'common/js/components/views/paging_header', 'common/js/components/views/paging_footer', 'gettext', 'jquery', 'underscore', 'backbone', 'logger', 'moment', 'edx-ui-toolkit/js/utils/html-utils',
'text!course_bookmarks/templates/bookmarks-list.underscore' 'common/js/components/views/paging_header', 'common/js/components/views/paging_footer',
], 'text!course_bookmarks/templates/bookmarks-list.underscore'
],
function(gettext, $, _, Backbone, Logger, _moment, HtmlUtils, function(gettext, $, _, Backbone, Logger, _moment, HtmlUtils,
PagingHeaderView, PagingFooterView, bookmarksListTemplate) { PagingHeaderView, PagingFooterView, bookmarksListTemplate) {
var moment = _moment || window.moment; var moment = _moment || window.moment;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment