Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Aug 31, 2016
1 parent 30d9efa commit 67d55c7
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-ui-virtualization",
"version": "1.0.0-beta.3.0.0",
"version": "1.0.0-beta.3.0.1",
"description": "A plugin that provides a virtualized repeater and other virtualization services.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/virtual-repeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-binding', 'aurelia-t
if (!this._calledGetMore) {
var executeGetMore = function executeGetMore() {
_this5._calledGetMore = true;
var func = _this5.view(0) && _this5.view(0).firstChild.au ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var func = _this5.view(0) && _this5.view(0).firstChild && _this5.view(0).firstChild.au && _this5.view(0).firstChild.au['infinite-scroll-next'] ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var topIndex = _this5._first;
var isAtBottom = _this5._bottomBufferHeight === 0;
var isAtTop = _this5._isAtTop;
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-ui-virtualization.js
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ export class VirtualRepeat extends AbstractRepeater {
if (!this._calledGetMore) {
let executeGetMore = () => {
this._calledGetMore = true;
let func = (this.view(0) && this.view(0).firstChild.au) ? this.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
let func = (this.view(0) && this.view(0).firstChild && this.view(0).firstChild.au && this.view(0).firstChild.au['infinite-scroll-next']) ? this.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
let topIndex = this._first;
let isAtBottom = this._bottomBufferHeight === 0;
let isAtTop = this._isAtTop;
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/virtual-repeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ var VirtualRepeat = exports.VirtualRepeat = (_dec = (0, _aureliaTemplating.custo
if (!this._calledGetMore) {
var executeGetMore = function executeGetMore() {
_this5._calledGetMore = true;
var func = _this5.view(0) && _this5.view(0).firstChild.au ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var func = _this5.view(0) && _this5.view(0).firstChild && _this5.view(0).firstChild.au && _this5.view(0).firstChild.au['infinite-scroll-next'] ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var topIndex = _this5._first;
var isAtBottom = _this5._bottomBufferHeight === 0;
var isAtTop = _this5._isAtTop;
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/virtual-repeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export let VirtualRepeat = (_dec = customAttribute('virtual-repeat'), _dec2 = in
if (!this._calledGetMore) {
let executeGetMore = () => {
this._calledGetMore = true;
let func = this.view(0) && this.view(0).firstChild.au ? this.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
let func = this.view(0) && this.view(0).firstChild && this.view(0).firstChild.au && this.view(0).firstChild.au['infinite-scroll-next'] ? this.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
let topIndex = this._first;
let isAtBottom = this._bottomBufferHeight === 0;
let isAtTop = this._isAtTop;
Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/virtual-repeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export var VirtualRepeat = (_dec = customAttribute('virtual-repeat'), _dec2 = in
if (!this._calledGetMore) {
var executeGetMore = function executeGetMore() {
_this5._calledGetMore = true;
var func = _this5.view(0) && _this5.view(0).firstChild.au ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var func = _this5.view(0) && _this5.view(0).firstChild && _this5.view(0).firstChild.au && _this5.view(0).firstChild.au['infinite-scroll-next'] ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var topIndex = _this5._first;
var isAtBottom = _this5._bottomBufferHeight === 0;
var isAtTop = _this5._isAtTop;
Expand Down
2 changes: 1 addition & 1 deletion dist/system/virtual-repeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ System.register(['aurelia-dependency-injection', 'aurelia-binding', 'aurelia-tem
if (!this._calledGetMore) {
var executeGetMore = function executeGetMore() {
_this5._calledGetMore = true;
var func = _this5.view(0) && _this5.view(0).firstChild.au ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var func = _this5.view(0) && _this5.view(0).firstChild && _this5.view(0).firstChild.au && _this5.view(0).firstChild.au['infinite-scroll-next'] ? _this5.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var topIndex = _this5._first;
var isAtBottom = _this5._bottomBufferHeight === 0;
var isAtTop = _this5._isAtTop;
Expand Down
2 changes: 1 addition & 1 deletion dist/temp/aurelia-ui-virtualization.js
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ var VirtualRepeat = exports.VirtualRepeat = (_dec4 = (0, _aureliaTemplating.cust
if (!this._calledGetMore) {
var executeGetMore = function executeGetMore() {
_this9._calledGetMore = true;
var func = _this9.view(0) && _this9.view(0).firstChild.au ? _this9.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var func = _this9.view(0) && _this9.view(0).firstChild && _this9.view(0).firstChild.au && _this9.view(0).firstChild.au['infinite-scroll-next'] ? _this9.view(0).firstChild.au['infinite-scroll-next'].instruction.attributes['infinite-scroll-next'] : undefined;
var topIndex = _this9._first;
var isAtBottom = _this9._bottomBufferHeight === 0;
var isAtTop = _this9._isAtTop;
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.0.0-beta.3.0.1"></a>
# [1.0.0-beta.3.0.1](https://github.com/aurelia/ui-virtualization/compare/1.0.0-beta.3.0.0...v1.0.0-beta.3.0.1) (2016-08-31)


### Bug Fixes

* **virtual-repeat:** check for infinite-scroll attribute ([c779738](https://github.com/aurelia/ui-virtualization/commit/c779738))



<a name="1.0.0-beta.3.0.0"></a>
# [1.0.0-beta.3.0.0](https://github.com/aurelia/ui-virtualization/compare/1.0.0-beta.2.0.0...v1.0.0-beta.3.0.0) (2016-08-26)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-ui-virtualization",
"version": "1.0.0-beta.3.0.0",
"version": "1.0.0-beta.3.0.1",
"description": "A plugin that provides a virtualized repeater and other virtualization services.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 67d55c7

Please sign in to comment.