This repository has been archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(modal): add no css import script
- Add index-nocss.js for modals Closes #5788
- Loading branch information
Showing
2 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
require('../position/index-nocss.js'); | ||
require('../stackedMap'); | ||
require('../../template/modal/backdrop.html.js'); | ||
require('../../template/modal/window.html.js'); | ||
require('./modal'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.modal'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.modal', 'uib/template/modal/backdrop.html', 'uib/template/modal/window.html']); | ||
|
||
module.exports = MODULE_NAME; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,2 @@ | ||
require('../position'); | ||
require('../stackedMap'); | ||
require('../../template/modal/backdrop.html.js'); | ||
require('../../template/modal/window.html.js'); | ||
require('./modal'); | ||
|
||
var MODULE_NAME = 'ui.bootstrap.module.modal'; | ||
|
||
angular.module(MODULE_NAME, ['ui.bootstrap.modal', 'uib/template/modal/backdrop.html', 'uib/template/modal/window.html']); | ||
|
||
module.exports = MODULE_NAME; | ||
require('../position/position.css'); | ||
module.exports = require('./index-nocss.js'); |
a27a4e2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wesleycho Looks like I missed this one. "modal" should also be added to that list at README.md, then.