Code coverage report for js/directives/simple-chat/simple-chat.config.js

Statements: 100% (7 / 7)      Branches: 100% (0 / 0)      Functions: 100% (3 / 3)      Lines: 100% (7 / 7)      Ignored: none     

All files » js/directives/simple-chat/ » simple-chat.config.js
1 2 3 4 5 6 7 8 9 10 11 12 131 2 2     1 1     1 1    
function SimpleChatConfig() {
    this.showUserAvatar = true;
    this.showComposer = true;
}
 
SimpleChatConfig.prototype.setShowUserAvatar = function(value) {
    this.showUserAvatar = value;
};
 
SimpleChatConfig.prototype.setShowComposer = function(value) {
    this.showComposer = value;
};