Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit f0c94ea

Browse files
docs(limitTo): exclude the e2e test that fails on safari
Safari and doesn't like the minus key to be sent to it via Protractor. Commenting out rather than using xit so that it passes the build!
1 parent 729129b commit f0c94ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ng/filter/limitTo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
*
3+
/*
44
* @ngdoc filter
55
* @name limitTo
66
* @kind function
@@ -85,7 +85,7 @@
8585
});
8686
</file>
8787
</example>
88-
88+
*/
8989
function limitToFilter(){
9090
return function(input, limit) {
9191
if (isNumber(input)) input = input.toString();

0 commit comments

Comments
 (0)