I am in need of utilizing a directive to fetch and display data using ng-repeat from a service.
The anticipated result will be
<ul>Days
<li>Monday</li>
<li>Tuesday</li>
...
<ul>
<ul>Month
<li>January</li>
<li>February</li>
...
<ul>
I have set up a jsFiddle for this purpose.
http://jsfiddle.net/alaksandarjesus/upzayfv1/8/
Unfortunately, the directive is not being called in my jsFiddle. However, the message "I am from directive" is being displayed on my localhost. Running the jsFiddle will provide a better insight into my issue.