テンプレートで ng-bind-html ディレクティブを使用して角度付きブートストラップ モーダルを使用していますが、バインドされている html の ng-clicks が機能しません。
$scope.shouldWork = function () {
// stuff
};
$scope.html1 = '<span ng-click="shouldWork()"></span>'
var modal = $modal.open({
$scope,
template: '<div ng-bind-html="html1"></div>'
});
shouldWork()
呼び出されることはありません。とにかくこれを機能させる方法はありますか?