Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(modal): missing require in modal
Browse files Browse the repository at this point in the history
- Fix incorrect require of css instead of position module

Closes #5786
  • Loading branch information
mhchen authored and wesleycho committed Apr 12, 2016
1 parent bba3f27 commit a887d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modal/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
require('../position');
require('../stackedMap');
require('../../template/modal/backdrop.html.js');
require('../../template/modal/window.html.js');
require('./modal');
require('../position/position.css');

var MODULE_NAME = 'ui.bootstrap.module.modal';

Expand Down

0 comments on commit a887d2b

Please sign in to comment.