Quantcast
Viewing all articles
Browse latest Browse all 4837

How to include the icon inside the tooltip message

@Boo wrote:

HEllo, I need to include the download icon inside the tooltip message, I have tried the below code:

ObjectIconView: Ember.ContainerView.extend(childMOMixin, {
                iconDownload: function () {
                              model: 'download'
                },
                mouseEnter: function(e) {
                if(type == 'Text'){
                var textUrl = {content: 'Preview is Not Available, Use '+ this.iconDownload() +'Menu'};
                this.$().tooltip(textUrl);
}
}

In that I have called the iconDownload inside the tooltip. But it’s saying undefined in the output. I’m using Ember 1.4.0 version. Can anybody please provide the suggestion for this. Thanks in advance

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 4837