Skip to content

Commit

Permalink
Added MacGDBp as IDE option
Browse files Browse the repository at this point in the history
Fixed issue #18 with this
  • Loading branch information
mac-cain13 committed Jan 25, 2013
1 parent 201a359 commit f7e8348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ <h3>IDE key</h3>
<select id="ide">
<option value="XDEBUG_ECLIPSE">Eclipse</option>
<option value="netbeans-xdebug">Netbeans</option>
<option value="macgdbp">MacGDBp</option>
<option value="null">Other</option>
</select>
<span id="customkey"><input type="text" id="idekey" /> <a href="javascript:;"><img style="vertical-align: middle;" src="images/disk.png" alt="Save" title="Save" /></a></span>
Expand Down
2 changes: 1 addition & 1 deletion source/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function restore_options()
idekey = "XDEBUG_ECLIPSE";
}

if (idekey == "XDEBUG_ECLIPSE" || idekey == "netbeans-xdebug")
if (idekey == "XDEBUG_ECLIPSE" || idekey == "netbeans-xdebug" || idekey == "macgdbp")
{
$('#ide').val(idekey);
}
Expand Down

0 comments on commit f7e8348

Please sign in to comment.