Plnkr: http://plnkr.co/edit/6xe46opL2kpgQrf7VaEu?p=preview
I have a ng-click="switchCurreny()
function that I'm trying to get working on an block of HTML that is placed inside of another block of HTML that is embedded on the page from my directive
.
My app-main
controller that places another block of HTML into the directive placed HTML, also contains the ng-click
function I'm trying to get working:
var app = angular.module('app-main', ['ngAnimate', 'wallet-directives'])
.controller('MainCtrl', ['$scope', '$sce', function($scope, $sce) {
var vm = $scope;
var currency = 'USD';
vm.modal = false;
vm.modal_send = false;
vm.modalActive = false;
// HTML to be placed inside of directive placed HTML in <wallet-modals>
var send_html = '<div ng-click="switchCurreny()" class="btn_usd noselect">'+currency+'</div>';
// Open the modal, then place send_html into modal_bind:
vm.openModal = function($event) {
vm.modal = true; // show modal
vm.modal_send = true; // show modal_send
vm.modal_bind = $sce.trustAsHtml(send_html); // stick send_html inside of modal_bindd
}
vm.closeModal = function() {
vm.modal = false;
vm.modal_send = false;
};
// ng-click function inside of send_html:
vm.switchCurreny = function() {
console.log('clicked');
if (currency === 'USD') {
currency = 'BTC';
} else {
currency === 'USD';
}
};
}]);
My Directive with the Modal HTML
(function() {
var app = angular.module('wallet-directives', [])
.directive('walletModals', function () {
return {
restrict: 'E',
template: '<div ng-show="modal_send" class="modal"><p>The Modal, button below:</p><br/><div ng-bind-html="modal_bind"></div></div>'
};
});
})();
HTML
<!-- Directive goes here -->
<wallet-modals></wallet-modals>