Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 10aab3d

Browse files
Abdul HagiAbdul Hagi
authored andcommitted
Fixed the bower_components src in the README
1 parent be530c7 commit 10aab3d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A complete AngularJS directive for the Arshaw FullCalendar.
1515
Using [bower](http://bower.io) run:
1616

1717
bower install --save angular-ui-calendar
18-
18+
1919
Alternatively you can add it to your `bower.json` like this:
2020

2121
dependencies: {
@@ -28,14 +28,14 @@ And then run
2828

2929
This will copy the ui-calendar files into your `components` folder, along with its dependencies. Load the script and style files in your application:
3030

31-
<link rel="stylesheet" href="bower_components/fullcalendar/fullcalendar.css"/>
31+
<link rel="stylesheet" href="bower_components/fullcalendar/dist/fullcalendar.css"/>
3232
<!-- jquery, moment, and angular have to get included before fullcalendar -->
33-
<script type="text/javascript" src="bower_components/jquery/jquery.js"></script>
34-
<script type="text/javascript" src="bower_components/moment/moment.js"></script>
35-
<script type="text/javascript" src="bower_components/angular/angular.js"></script>
33+
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
34+
<script type="text/javascript" src="bower_components/moment/min/moment.min.js"></script>
35+
<script type="text/javascript" src="bower_components/angular/angular.min.js"></script>
3636
<script type="text/javascript" src="bower_components/angular-ui-calendar/src/calendar.js"></script>
37-
<script type="text/javascript" src="bower_components/fullcalendar/fullcalendar.js"></script>
38-
<script type="text/javascript" src="bower_components/fullcalendar/gcal.js"></script>
37+
<script type="text/javascript" src="bower_components/fullcalendar/dist/fullcalendar.min.js"></script>
38+
<script type="text/javascript" src="bower_components/fullcalendar/dist/gcal.js"></script>
3939

4040
Add the calendar module as a dependency to your application module:
4141

@@ -111,7 +111,7 @@ If you need to automatically re-render other event data, you can use `calendar-w
111111

112112
### Adding new events issue
113113

114-
When adding new events to the calendar they can disappear when switching months. To solve this add `stick: true` to the event object being added to the scope.
114+
When adding new events to the calendar they can disappear when switching months. To solve this add `stick: true` to the event object being added to the scope.
115115

116116
## Watching the displayed date range of the calendar
117117

0 commit comments

Comments
 (0)