angular-summernote
                                
                                
                                
                                    angular-summernote copied to clipboard
                            
                            
                            
                        Destroy & Restore the Ng-model
is there a way how can I destroy and again restore the ng-model?
Example: I have 2 summernote editors. They all got ng-model from the scope.
< summernote ng-model="text">< summernote>
and
< summernote ng-model="text">< summernote>
angular.module('myApp', ['summernote'])
.controller('EditorCtrl', function($scope) {
$scope.text = "Hello World";
})
All summernote editor's makes a transclude. That's okay.
Is there a way how can I destroy the connections between them and if I want then again restore the connection? To transclude again.
@jozefpinter I don't have any idea to destory and restore the link for ng-model. If you have any hint about it in other directives, I will check it.