Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #10255 from lightsofapollo/bug-880485-use-removeCh…
Browse files Browse the repository at this point in the history
…ild-not-remove

Bug 872226 - Use removeChild (as was intended)
  • Loading branch information
KevinGrandon committed Jun 10, 2013
2 parents a7cc7c4 + af8019c commit cfcea99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/calendar/js/views/modify_event.js
Expand Up @@ -217,7 +217,7 @@ Calendar.ns('Views').ModifyEvent = (function() {

var option = element.querySelector('[value="' + id + '"]');
if (option) {
option.parentNode.remove(option);
element.removeChild(option);
}

if (this.onremovecalendar) {
Expand Down

0 comments on commit cfcea99

Please sign in to comment.