mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
This test makes it easy to test copy and paste both inside a Cappuccino app, and externally to and from other Cappuccino instances in other browser, or other applications, when using a text field or a collection view as the source/destination.
19 lines
319 B
Plaintext
19 lines
319 B
Plaintext
/*
|
|
* AppController.j
|
|
* CopyAndPaste
|
|
*
|
|
* Created by Alexander Ljungberg on June 13, 2013.
|
|
* Copyright 2013, SlevenBits, Ltd. All rights reserved.
|
|
*/
|
|
|
|
@import <Foundation/Foundation.j>
|
|
@import <AppKit/AppKit.j>
|
|
|
|
@import "AppController.j"
|
|
|
|
|
|
function main(args, namedArgs)
|
|
{
|
|
CPApplicationMain(args, namedArgs);
|
|
}
|