-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide a means to allow the user to continuously insert more data into the array being viewed. resolve: #5
- Loading branch information
Showing
31 changed files
with
727 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ System.config({ | |
}, | ||
|
||
map: { | ||
"aurelia-binding": "npm:[email protected].0", | ||
"aurelia-bootstrapper": "npm:[email protected]beta.2.0.1", | ||
"aurelia-binding": "npm:[email protected].2", | ||
"aurelia-bootstrapper": "npm:[email protected]rc.1.0.1", | ||
"aurelia-dependency-injection": "npm:[email protected]", | ||
"aurelia-framework": "npm:[email protected].0", | ||
"aurelia-framework": "npm:[email protected].1", | ||
"aurelia-logging": "npm:[email protected]", | ||
"aurelia-logging-console": "npm:[email protected]", | ||
"aurelia-pal": "npm:[email protected]", | ||
|
@@ -56,15 +56,15 @@ System.config({ | |
"process": "github:jspm/[email protected]", | ||
"util": "npm:[email protected]" | ||
}, | ||
"npm:[email protected].0": { | ||
"npm:[email protected].2": { | ||
"aurelia-logging": "npm:[email protected]", | ||
"aurelia-metadata": "npm:[email protected]", | ||
"aurelia-pal": "npm:[email protected]", | ||
"aurelia-task-queue": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]beta.2.0.1": { | ||
"npm:[email protected]rc.1.0.1": { | ||
"aurelia-event-aggregator": "npm:[email protected]", | ||
"aurelia-framework": "npm:[email protected].0", | ||
"aurelia-framework": "npm:[email protected].1", | ||
"aurelia-history": "npm:[email protected]", | ||
"aurelia-history-browser": "npm:[email protected]", | ||
"aurelia-loader-default": "npm:[email protected]", | ||
|
@@ -85,8 +85,8 @@ System.config({ | |
"npm:[email protected]": { | ||
"aurelia-logging": "npm:[email protected]" | ||
}, | ||
"npm:[email protected].0": { | ||
"aurelia-binding": "npm:[email protected].0", | ||
"npm:[email protected].1": { | ||
"aurelia-binding": "npm:[email protected].2", | ||
"aurelia-dependency-injection": "npm:[email protected]", | ||
"aurelia-loader": "npm:[email protected]", | ||
"aurelia-logging": "npm:[email protected]", | ||
|
@@ -136,12 +136,12 @@ System.config({ | |
"aurelia-pal": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-binding": "npm:[email protected].0", | ||
"aurelia-binding": "npm:[email protected].2", | ||
"aurelia-logging": "npm:[email protected]", | ||
"aurelia-templating": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-binding": "npm:[email protected].0", | ||
"aurelia-binding": "npm:[email protected].2", | ||
"aurelia-dependency-injection": "npm:[email protected]", | ||
"aurelia-loader": "npm:[email protected]", | ||
"aurelia-logging": "npm:[email protected]", | ||
|
@@ -161,7 +161,7 @@ System.config({ | |
"aurelia-templating": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-binding": "npm:[email protected].0", | ||
"aurelia-binding": "npm:[email protected].2", | ||
"aurelia-dependency-injection": "npm:[email protected]", | ||
"aurelia-loader": "npm:[email protected]", | ||
"aurelia-logging": "npm:[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
define(['exports', './virtual-repeat'], function (exports, _virtualRepeat) { | ||
define(['exports', './virtual-repeat', './virtual-repeat-next'], function (exports, _virtualRepeat, _virtualRepeatNext) { | ||
'use strict'; | ||
|
||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.VirtualRepeat = undefined; | ||
exports.VirtualRepeatNext = exports.VirtualRepeat = undefined; | ||
exports.configure = configure; | ||
function configure(config) { | ||
config.globalResources('./virtual-repeat'); | ||
config.globalResources('./virtual-repeat', './virtual-repeat-next'); | ||
} | ||
|
||
exports.VirtualRepeat = _virtualRepeat.VirtualRepeat; | ||
exports.VirtualRepeatNext = _virtualRepeatNext.VirtualRepeatNext; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
define(['exports', 'aurelia-templating'], function (exports, _aureliaTemplating) { | ||
'use strict'; | ||
|
||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.VirtualRepeatNext = undefined; | ||
|
||
|
||
|
||
var _dec, _class; | ||
|
||
var VirtualRepeatNext = exports.VirtualRepeatNext = (_dec = (0, _aureliaTemplating.customAttribute)('virtual-repeat-next'), _dec(_class = function () { | ||
function VirtualRepeatNext() { | ||
|
||
} | ||
|
||
VirtualRepeatNext.prototype.attached = function attached() {}; | ||
|
||
VirtualRepeatNext.prototype.bind = function bind(bindingContext, overrideContext) { | ||
this.scope = { bindingContext: bindingContext, overrideContext: overrideContext }; | ||
}; | ||
|
||
return VirtualRepeatNext; | ||
}()) || _class); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.