Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | $(document).ready(function () { |
||
2 | API.runtime.onMessage.addListener(function (msg) { |
||
3 | $('.container').show(); |
||
4 | //console.log('Method call', msg.method); |
||
5 | if(msg.hasOwnProperty('setIframeUsername')){ |
||
6 | $('.username').text(msg.setIframeUsername); |
||
7 | } |
||
8 | }); |
||
9 | }); |