Files
stf-DeviceFarmer/res/app/components/stf/socket/index.js
Gunther Brunner e27e17d699 APPSTATE refactoring:
- Make index.html cacheable by being stateless
- Improve compression (base64 doesn't gzip well)
- Remove base64 encoding/decoding step
- Make AppState injectable so it can be unit tested
- Ready to remove the global leakage
2014-08-22 15:04:16 +09:00

7 lines
242 B
JavaScript

module.exports = angular.module('stf/socket', [
//TODO: Refactor version update out to its own Ctrl
require('stf/app-state').name,
require('stf/common-ui/modals/version-update').name
])
.factory('socket', require('./socket-service'))