Skip to content

Commit bfdd396

Browse files
author
pipeline
committed
v17.1.38 is released
1 parent 50b8885 commit bfdd396

File tree

2,460 files changed

+180484
-26178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,460 files changed

+180484
-26178
lines changed

controls/base/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 17.1.38 (2019-03-29)
6+
7+
### Common
8+
9+
#### New Features
10+
11+
- Provided the Bootstrap 4 support
12+
513
## 17.1.32-beta (2019-03-13)
614

715
### Common

controls/base/dist/ej2-base.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/ej2-base.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es2015.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es5.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-base.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/global/ej2-base.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/global/ej2-base.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/helpers/e2e/base.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/**
32
* Base E2E Helper Function
43
*/
@@ -12,15 +11,15 @@ export abstract class TestHelper {
1211
}
1312

1413
public setModel(property: string, value: any) {
15-
return Mapper.setModel(this.id, this.selector, property, value);
14+
return Mapper.setModel(this.id, this.selector.bind(this), property, value);
1615
}
1716

1817
public getModel(property: string, ) {
19-
return Mapper.getModel(this.id, this.selector, property);
18+
return Mapper.getModel(this.id, this.selector.bind(this), property);
2019
}
2120

2221
public invoke(fName: string, args: any[] = []) {
23-
return Mapper.invoke(this.id, this.selector, fName, args);
22+
return Mapper.invoke(this.id, this.selector.bind(this), fName, args);
2423
}
2524

2625
public eventHandler(eventName: string, callback: any) {

0 commit comments

Comments
 (0)