Skip to content

Commit

Permalink
Removed Combo & List.ts in favour of List.tsx. #43
Browse files Browse the repository at this point in the history
  • Loading branch information
MKHenson committed Aug 12, 2016
1 parent 3f5a939 commit 64c6ed2
Show file tree
Hide file tree
Showing 6 changed files with 491 additions and 512 deletions.
14 changes: 7 additions & 7 deletions lib/core/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,15 +430,15 @@
}
}

export class ListEvent extends Event {
public item: string;
// export class ListEvent extends Event {
// public item: string;

constructor(eventName: ListEvents, item: string) {
super(eventName, item);
// constructor(eventName: ListEvents, item: string) {
// super(eventName, item);

this.item = item;
}
}
// this.item = item;
// }
// }

/**
* A simple project event. Always related to a project resource (null if not)
Expand Down
2 changes: 1 addition & 1 deletion lib/core/import-export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ module Animate {
if ( response == LoaderEvents.COMPLETE ) {
if ( event.return_type == AnimateLoaderResponses.SUCCESS ) {
if ( loader.url == "/export/compile" ) {
Logger.getSingleton().clearItems();
Logger.getSingleton().clear();
var now: Date = new Date();
Logger.logMessage( "Build complete at " + new Date( Date.now() ).toDateString(), null, LogType.MESSAGE );
Logger.logMessage( "External link: " + event.tag.liveLink, null, LogType.MESSAGE );
Expand Down
Loading

0 comments on commit 64c6ed2

Please sign in to comment.