Advertisement
Guest User

Untitled

a guest
Sep 7th, 2014
776
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var testActivit   = require('./testActivit.js');
  2. var blankFunction = function() {};
  3.  
  4. module.exports = {
  5.   componentWillMount: function() {
  6.     testActivit.addChangeListener(this.activitStateChange || blankFunction);
  7.   },
  8.   componentWillUnmount: function() {
  9.     testActivit.removeChangeListener(this.activitStateChange || blankFunction);
  10.   },
  11.   setActivitState: function(name, value) {
  12.     testActivit.set(name, value);
  13.   },
  14.   getActivitState: function(name) {
  15.     return testActivit.get(name);
  16.   }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement