/** * Created by maprex on 2021-02-26 */ 'use strict'; define(['app'], function (app) { // app.controller('noticeModalController', ["$rootScope", // function ($rootScope){ // console.log("DSFSD"); // // }]), // app.directive('noticeModal', ["$rootScope", // function ($rootScope) { // return { // restrict : 'E', // template: "

테스트

", // //templateUrl: 'views/popup/notice.html' // }; // }]) app.directive('noticeModal', function () { return { template:'

테스트

' } }); });