Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
advisor
Commits
3dc607e3
Commit
3dc607e3
authored
Mar 02, 2014
by
Renfred Harper
Browse files
Remove course view
parent
2df64f79
Changes
1
Hide whitespace changes
Inline
Side-by-side
advisor/mainapp/static/js/advisor/views/course-view.js
deleted
100644 → 0
View file @
2df64f79
var
advisor
=
advisor
||
{};
advisor
.
CourseView
=
Backbone
.
View
.
extend
({
tagName
:
'
div
'
,
template
:
_
.
template
(
$
(
'
#course-template
'
).
html
()
),
events
:
{
"
click
"
:
"
info
"
},
initialize
:
function
()
{
this
.
listenTo
(
this
.
model
,
'
change
'
,
this
.
render
);
},
// Re-renders the titles of the todo item.
render
:
function
()
{
$
(
'
body
'
).
append
(
this
.
template
(
this
.
model
.
toJSON
()
)
);
return
this
;
},
info
:
function
()
{
}
});
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