Guest User

Untitled

a guest
Feb 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. methods: {
  2. onRender: function(){
  3. this.callParent(arguments);
  4. this.hideFeedTab();
  5. },
  6.  
  7. hideFeedTab: function(){
  8. var tabsCollection = this.get("TabsCollection");
  9. if(tabsCollection){
  10. if(tabsCollection.contains("ESNTab")){
  11. tabsCollection.removeByKey("ESNTab");
  12. }
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment