Fixing various bugs.

This commit is contained in:
Ben Vanik 2013-12-24 23:29:40 -08:00
parent 44cbe1bbcf
commit 062610c596
4 changed files with 44 additions and 6 deletions

View file

@ -190,7 +190,7 @@ module.controller('FunctionViewController', function(
var address = sourceLine[1];
var breakpoint = app.session.breakpoints[address];
var el;
if (breakpoint) {
if (breakpoint && breakpoint.type == 'code') {
el = document.createElement('span');
el.classList.add('debugger-fnview-gutter-icon-el');
if (breakpoint.enabled) {