OSDN Git Service

Change UserInterface and File Manipulation API
[eos/base.git] / zephyr / client / app / service / createFileModal / createFileModal.service.js
1 'use strict';
2
3 angular.module('zephyrApp')
4   .service('createFileModal', function ($modal) {
5     var openModal = function (scope) {
6         $modal.open({
7             templateUrl: 'app/service/createFileModal/createFileModal.html',
8             controller : 'CreateFileModalCtrl',
9             badkdrop: true,
10             scope: scope
11         });
12     };
13     return {
14         open: openModal
15     }
16   });