This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Taken from UIViewController.h, code is (c) Apple | |
/* | |
These two methods are public for container subclasses to call when transitioning between child | |
controllers. If they are overridden, the overrides should ensure to call the super. The parent argument in | |
both of these methods is nil when a child is being removed from its parent; otherwise it is equal to the new | |
parent view controller. | |
addChildViewController: will call [child willMoveToParentViewController:self] before adding the | |
child. However, it will not call didMoveToParentViewController:. It is expected that a container view |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var eysholdtFilter = new SimpleFilter(function(data) { | |
session = data; | |
session.abstract = session.abstract.replace(/<\/br>\n<\/br>\n/g, "\n"); | |
session.abstract = session.abstract.replace(/<\/b>/g, "</b>"); | |
session.abstract = session.abstract.replace(/<br>\n/g, "\n"); | |
session.abstract = session.abstract.replace(/<\/br>\n/g, "\n"); | |
return session; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I made this gist with Gist: The Script (see https://github.com/defunkt/gist) |
NewerOlder