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!
This commit is contained in:
Peter Bacon Darwin
2014-09-19 22:45:14 +01:00
parent 729129b461
commit f0c94ea292

View File

@@ -1,6 +1,6 @@
'use strict';
*
/*
* @ngdoc filter
* @name limitTo
* @kind function
@@ -85,7 +85,7 @@
});
</file>
</example>
*/
function limitToFilter(){
return function(input, limit) {
if (isNumber(input)) input = input.toString();