This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -795,7 +795,7 @@ angular.module('ngAnimate', ['ng'])
795
795
* | 8. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
796
796
* | 9. The doneCallback() callback is fired (if provided) | class="my-animation" |
797
797
*
798
- * @param {DOMElement } element the element which will it's CSS classes changed
798
+ * @param {DOMElement } element the element which will its CSS classes changed
799
799
* removed from it
800
800
* @param {string } add the CSS classes which will be added to the element
801
801
* @param {string } remove the CSS class which will be removed from the element
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ angular.scenario.Future.prototype.execute = function(doneFn) {
38
38
} ;
39
39
40
40
/**
41
- * Configures the future to convert it's final with a function fn(value)
41
+ * Configures the future to convert its final with a function fn(value)
42
42
*
43
43
* @param {function() } fn function(value) that returns the parsed value
44
44
*/
@@ -48,15 +48,15 @@ angular.scenario.Future.prototype.parsedWith = function(fn) {
48
48
} ;
49
49
50
50
/**
51
- * Configures the future to parse it's final value from JSON
51
+ * Configures the future to parse its final value from JSON
52
52
* into objects.
53
53
*/
54
54
angular . scenario . Future . prototype . fromJson = function ( ) {
55
55
return this . parsedWith ( angular . fromJson ) ;
56
56
} ;
57
57
58
58
/**
59
- * Configures the future to convert it's final value from objects
59
+ * Configures the future to convert its final value from objects
60
60
* into JSON.
61
61
*/
62
62
angular . scenario . Future . prototype . toJson = function ( ) {
Original file line number Diff line number Diff line change @@ -589,7 +589,7 @@ describe('ngView and transcludes', function() {
589
589
} ) ;
590
590
} ) ;
591
591
592
- it ( "should compile it's content correctly (although we remove it later)" , function ( ) {
592
+ it ( "should compile its content correctly (although we remove it later)" , function ( ) {
593
593
var testElement ;
594
594
module ( function ( $compileProvider , $routeProvider ) {
595
595
$routeProvider . when ( '/view' , { template : ' ' } ) ;
You can’t perform that action at this time.
0 commit comments