Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions quick-ng-repeat.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ angular.module('QuickList', []);
angular.module('QuickList').value('quickRepeatList', {});

angular.module('QuickList').directive('quickNgRepeat',
['$parse', '$animate', '$rootScope', 'quickRepeatList', function($parse, $animate, $rootScope, quick_repeat_list) {
['$parse', '$animate', '$rootScope', 'quickRepeatList', function($parse, $animate, $rootScope, quickRepeatList) {
var NG_REMOVED = '$$NG_REMOVED';
var ngRepeatMinErr = 'err';
var uid = ['0', '0', '0'];
Expand Down Expand Up @@ -131,7 +131,7 @@ angular.module('QuickList').directive('quickNgRepeat',
var list_name = $attr.quickRepeatList || list_id();

//watch props
$scope.$watch(rhs, quick_repeat_list[list_name] = function(collection){
$scope.$watch(rhs, quickRepeatList[list_name] = function(collection){
var index, length,
previousNode = $element[0], // current position of the node
nextNode,
Expand Down