Skip to content

Commit

Permalink
Merge pull request #1327 from a2/Update_Mon_18_May
Browse files Browse the repository at this point in the history
Updates from Mon 18 May
  • Loading branch information
a2 committed May 18, 2015
2 parents 424d131 + 7219fce commit f2ffaed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion React/Base/RCTBridge.m
Original file line number Diff line number Diff line change
Expand Up @@ -1182,6 +1182,7 @@ - (void)invalidate
}

void (^mainThreadInvalidate)(void) = ^{
RCTAssertMainThread();

[_mainDisplayLink invalidate];
_mainDisplayLink = nil;
Expand Down Expand Up @@ -1221,7 +1222,7 @@ - (void)invalidate
/**
* Main Thread deallocations
*/
mainThreadInvalidate();
dispatch_async(dispatch_get_main_queue(), mainThreadInvalidate);

}];
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"yargs": "1.3.2"
},
"devDependencies": {
"jest-cli": "0.4.3",
"jest-cli": "0.4.5",
"eslint": "0.9.2"
}
}
2 changes: 1 addition & 1 deletion packager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"dependencies": {},
"devDependencies": {
"jest-cli": "0.4.3",
"jest-cli": "0.4.5",
"eslint": "0.9.2"
}
}

0 comments on commit f2ffaed

Please sign in to comment.