Added Chat (disabled for now).

This commit is contained in:
Gunther Brunner
2014-06-19 16:59:25 +09:00
parent c1adb9087a
commit af6fa9fe29
11 changed files with 135 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
// TODO: Test this
module.exports = function () {
return function (scope, element, attrs) {
scope.$watch(attrs.pageVisible, function () {
element.bind('load', function () {
scope.$apply(attrs.pageLoad)
})
})
}
}