mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
load assets using a configure function
This commit is contained in:
parent
6a76e6c431
commit
b96cd8018f
@ -49,7 +49,7 @@ Version 1.5.7
|
|||||||
- add an icon when the file is opened / closed in result list, and in person rendering macro
|
- add an icon when the file is opened / closed in result list, and in person rendering macro
|
||||||
- improve command to move person and all data: allow to delete some entities during move and add events
|
- improve command to move person and all data: allow to delete some entities during move and add events
|
||||||
|
|
||||||
Master branch
|
Version 1.5.8
|
||||||
=============
|
=============
|
||||||
|
|
||||||
- add search by phonenumber, with a custom SearchInterface
|
- add search by phonenumber, with a custom SearchInterface
|
||||||
@ -67,6 +67,6 @@ Master branch
|
|||||||
```
|
```
|
||||||
- format phonenumber using twilio (if available) ;
|
- format phonenumber using twilio (if available) ;
|
||||||
- add `record_actions` in person search result list: users can click on a little eye to open person page ;
|
- add `record_actions` in person search result list: users can click on a little eye to open person page ;
|
||||||
|
|
||||||
- add new fields (email, mobilenumber, gender) into importPeopleFromCSV command
|
- add new fields (email, mobilenumber, gender) into importPeopleFromCSV command
|
||||||
|
- configure asset using a function
|
||||||
|
|
||||||
|
1
Resources/public/index.js
Normal file
1
Resources/public/index.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
require('./sass/person.scss');
|
@ -1,5 +1,4 @@
|
|||||||
// this file loads all assets from the Chill person bundle
|
// this file loads all assets from the Chill person bundle
|
||||||
|
module.exports = function(encore, entries) {
|
||||||
require('./Resources/public/css/person.css');
|
entries.push(__dirname + '/Resources/public/index.js');
|
||||||
require('./Resources/public/sass/index.js');
|
};
|
||||||
//require('./Resources/public/sass/person.scss');
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user