Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
rsbondi committed Aug 15, 2015
1 parent aa8402d commit 9233a97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/knockout-bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function setupKoBootstrap(koObject, $) {
var template = popoverBindingValues.template || false;
var options = popoverBindingValues.options || {title: 'popover'};
var data = popoverBindingValues.data || false;
var controlDecendants = popoverBindingValues.controlDecendants;
var controlDescendants = popoverBindingValues.controlDescendants;
if (template !== false) {
if (data) {
options.content = "<!-- ko template: { name: template, if: data, data: data } --><!-- /ko -->";
Expand Down Expand Up @@ -236,7 +236,7 @@ function setupKoBootstrap(koObject, $) {
$element.popover('destroy');
});

return { controlsDescendantBindings: typeof controlDecendants == 'undefined' ? true : controlDecendants };
return { controlsDescendantBindings: typeof controlDescendants == 'undefined' ? true : controlDescendants };

}
};
Expand Down

0 comments on commit 9233a97

Please sign in to comment.