Skip to content

Commit 6f338d5

Browse files
committed
Wire up the activate and deactivate events.
1 parent c7f9779 commit 6f338d5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/stacktrace-view.coffee

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ class StacktraceView extends View
2727

2828
# Public: Activate the current {Stacktrace}.
2929
#
30-
activate: ->
31-
console.log 'Activate'
30+
activate: -> @trace.activate()
3231

3332
# Public: Deactivate the current {Stacktrace}.
3433
#
35-
deactivate: ->
36-
console.log 'Deactivate'
34+
deactivate: -> @trace.deactivate()
3735

3836
# Internal: Register an opener function in the workspace to handle URLs
3937
# generated by a Stacktrace.

0 commit comments

Comments
 (0)