1
1
apos . define ( 'pk-people-editor-modal' , {
2
2
extend : 'apostrophe-pieces-editor-modal' ,
3
- construct : ( self , options ) => {
3
+ construct : function ( self , options ) {
4
4
const superBeforeShow = self . beforeShow ;
5
- self . beforeShow = ( callback ) => {
6
- return superBeforeShow ( ( err ) => {
5
+ self . beforeShow = function ( callback ) {
6
+ return superBeforeShow ( function ( err ) {
7
7
if ( err ) {
8
8
return callback ( err ) ;
9
9
}
@@ -12,15 +12,15 @@ apos.define('pk-people-editor-modal', {
12
12
} ) ;
13
13
} ;
14
14
15
- self . enableTitleViaName = ( ) => {
15
+ self . enableTitleViaName = function ( ) {
16
16
self . $title = apos . schemas . findField ( self . $el , 'title' ) ;
17
17
self . $firstName = apos . schemas . findField ( self . $el , 'firstName' ) ;
18
18
self . $lastName = apos . schemas . findField ( self . $el , 'lastName' ) ;
19
19
self . $firstName . on ( 'change' , self . updateTitleViaName ) ;
20
20
self . $lastName . on ( 'change' , self . updateTitleViaName ) ;
21
21
} ;
22
22
23
- self . updateTitleViaName = ( ) => {
23
+ self . updateTitleViaName = function ( ) {
24
24
self . $title . val ( ( self . $firstName . val ( ) + ' ' + self . $lastName . val ( ) ) . trim ( ) ) ;
25
25
self . $title . trigger ( 'change' ) ;
26
26
self . $title . trigger ( 'textchange' ) ;
0 commit comments