Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 2a29cfe

Browse files
committed
Change GitHub links from commit hashes to tags
1 parent 3fac88c commit 2a29cfe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/select.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ angular.module('ui.select', [])
3737
* Parses "repeat" attribute.
3838
*
3939
* Taken from AngularJS ngRepeat source code
40-
* See https://github.com/angular/angular.js/blob/55848a9139/src/ng/directive/ngRepeat.js#L211
40+
* See https://github.com/angular/angular.js/blob/v1.2.15/src/ng/directive/ngRepeat.js#L211
4141
*
4242
* Original discussion about parsing "repeat" attribute instead of fully relying on ng-repeat:
4343
* https://github.com/angular-ui/ui-select/commit/5dd63ad#commitcomment-5504697
@@ -144,7 +144,7 @@ angular.module('ui.select', [])
144144
ctrl.parseRepeatAttr = function(repeatAttr) {
145145
var repeat = RepeatParser.parse(repeatAttr);
146146

147-
// See https://github.com/angular/angular.js/blob/55848a9139/src/ng/directive/ngRepeat.js#L259
147+
// See https://github.com/angular/angular.js/blob/v1.2.15/src/ng/directive/ngRepeat.js#L259
148148
$scope.$watchCollection(repeat.rhs, function(items) {
149149

150150
if (items === undefined || items === null) {
@@ -176,8 +176,8 @@ angular.module('ui.select', [])
176176

177177
// Throttle / debounce
178178
//
179-
// See https://github.com/angular-ui/bootstrap/blob/0d4c2e21c3/src/typeahead/typeahead.js#L162
180-
// FYI AngularStrap typeahead does not have debouncing: https://github.com/mgcrea/angular-strap/blob/1529ab4bbc/src/typeahead/typeahead.js#L172
179+
// See https://github.com/angular-ui/bootstrap/blob/0.10.0/src/typeahead/typeahead.js#L155
180+
// FYI AngularStrap typeahead does not have debouncing: https://github.com/mgcrea/angular-strap/blob/v2.0.0-rc.4/src/typeahead/typeahead.js#L177
181181
if (_refreshDelayPromise) {
182182
$timeout.cancel(_refreshDelayPromise);
183183
}
@@ -257,7 +257,7 @@ angular.module('ui.select', [])
257257
}
258258
});
259259

260-
// See https://github.com/ivaynberg/select2/blob/70873abe9d/select2.js#L1431
260+
// See https://github.com/ivaynberg/select2/blob/3.4.6/select2.js#L1431
261261
function _ensureHighlightVisible() {
262262
var container = $element.querySelectorAll('.ui-select-choices-content');
263263
var rows = container.querySelectorAll('.ui-select-choices-row');
@@ -439,7 +439,7 @@ angular.module('ui.select', [])
439439
* Highlights text that matches $select.search.
440440
*
441441
* Taken from AngularUI Bootstrap Typeahead
442-
* See https://github.com/angular-ui/bootstrap/blob/d0024931de/src/typeahead/typeahead.js#L352
442+
* See https://github.com/angular-ui/bootstrap/blob/0.10.0/src/typeahead/typeahead.js#L340
443443
*/
444444
.filter('highlight', function() {
445445
function escapeRegexp(queryToEscape) {

0 commit comments

Comments
 (0)