Files
stf/res/app/control-panes/automation/store-account/index.js
Gunther Brunner 743f8becd6 - Finally, most of the unit tests now passes (resolving dependencies also).
- Shims now exports angular module name, however some of them clash with the original.
2014-08-21 22:04:19 +09:00

14 lines
433 B
JavaScript

require('./store-account.css')
require('angular-ladda')
module.exports = angular.module('stf.store-account', [
'angular-ladda',
require('stf/common-ui/table').name
])
.run(["$templateCache", function ($templateCache) {
$templateCache.put('control-panes/automation/store-account/store-account.jade',
require('./store-account.jade')
)
}])
.controller('StoreAccountCtrl', require('./store-account-controller'))