Add onClick listeners. Add getters for refs.

This commit is contained in:
Kegan Dougal 2015-07-15 13:34:11 +01:00
parent aba103b8e0
commit f94a061fda
6 changed files with 19 additions and 6 deletions

View file

@ -16,6 +16,14 @@ limitations under the License.
'use strict';
var MatrixClientPeg = require("../../MatrixClientPeg");
module.exports = {
onVideoClick: function() {
console.log("video clicked");
},
onVoiceClick: function() {
console.log("voice clicked");
}
};