Rename computedLimit to limit in limited-array
This commit is contained in:
parent
98892425bb
commit
17df511c6a
|
@ -1,9 +1,9 @@
|
||||||
computedLimit = Ember.computed.limit
|
limit = Ember.computed.limit
|
||||||
|
|
||||||
LimitedArray = Ember.ArrayProxy.extend
|
LimitedArray = Ember.ArrayProxy.extend
|
||||||
limit: 10
|
limit: 10
|
||||||
isLoadedBinding: 'content.isLoaded'
|
isLoadedBinding: 'content.isLoaded'
|
||||||
arrangedContent: computedLimit('content', 'limit')
|
arrangedContent: limit('content', 'limit')
|
||||||
|
|
||||||
totalLength: (->
|
totalLength: (->
|
||||||
@get('content.length')
|
@get('content.length')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user