We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a57a5c8 commit 582b4caCopy full SHA for 582b4ca
1 file changed
popup.jsx
@@ -49,6 +49,9 @@ var ActiveTabList = React.createClass({
49
50
componentDidMount: function() {
51
this.reload()
52
+ chrome.tabs.onRemoved.addListener(function(id, info){
53
+ this.reload()
54
+ }.bind(this))
55
},
56
57
handleClick: function(tab){
@@ -89,6 +92,9 @@ var StoredTabList = React.createClass({
89
92
90
93
91
94
95
+ chrome.storage.onChanged.addListener(function(changes, areaName){
96
97
98
99
100
0 commit comments