mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-30 15:33:35 +00:00
- Removed animationStyle for now. - Made sure that popoverDidClose is not called until animation is finished. - Don't create a new attached window unless: there isn't one; the popover behavior has changed; the current attached window is still visible. - Don't call popoverWillShow if there is not content view controller. - Removed unused _shown instance variable. - Removed redundant !_attachedWindow checks followed by _attachedWindow message that returns a BOOL. - Documentation tweaks. - Fixed up some demo issues.
25 lines
409 B
Plaintext
25 lines
409 B
Plaintext
/*
|
|
* AppController.j
|
|
* test
|
|
*
|
|
* Created by You on July 6, 2011.
|
|
* Copyright 2011, Your Company All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function formatter(aString, aLevel, aTitle)
|
|
{
|
|
return aString;
|
|
}
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPLogRegister(CPLogConsole, null, formatter);
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|