Skip to content

Commit d15bdfc

Browse files
author
mtthwmnc
authoredAug 8, 2019
Merge pull request #9 from punkave/hotfix/no-arrows
Remove arrow functions to avoid apostrophe asset minifiy errors. Bump…
2 parents b3063cd + 947326a commit d15bdfc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pk-people",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "A base class for people in ApostropheCMS",
55
"main": "index.js",
66
"scripts": {

‎public/js/editor-modal.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apos.define('pk-people-editor-modal', {
22
extend: 'apostrophe-pieces-editor-modal',
3-
construct: (self, options) => {
3+
construct: function (self, options) {
44
const superBeforeShow = self.beforeShow;
5-
self.beforeShow = (callback) => {
6-
return superBeforeShow((err) => {
5+
self.beforeShow = function (callback) {
6+
return superBeforeShow(function (err) {
77
if (err) {
88
return callback(err);
99
}
@@ -12,15 +12,15 @@ apos.define('pk-people-editor-modal', {
1212
});
1313
};
1414

15-
self.enableTitleViaName = () => {
15+
self.enableTitleViaName = function () {
1616
self.$title = apos.schemas.findField(self.$el, 'title');
1717
self.$firstName = apos.schemas.findField(self.$el, 'firstName');
1818
self.$lastName = apos.schemas.findField(self.$el, 'lastName');
1919
self.$firstName.on('change', self.updateTitleViaName);
2020
self.$lastName.on('change', self.updateTitleViaName);
2121
};
2222

23-
self.updateTitleViaName = () => {
23+
self.updateTitleViaName = function () {
2424
self.$title.val((self.$firstName.val() + ' ' + self.$lastName.val()).trim());
2525
self.$title.trigger('change');
2626
self.$title.trigger('textchange');

0 commit comments

Comments
 (0)