Skip to content

Commit

Permalink
Take out usage of extends for now until we figure out why it breaks t…
Browse files Browse the repository at this point in the history
…he app
  • Loading branch information
gashcrumb committed Apr 30, 2013
1 parent 2dc35af commit 8e8e44a
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions hawtio-web/src/main/webapp/app/core/js/tableDetail.ts
Expand Up @@ -3,9 +3,27 @@ module Core {
/**
* Provides an abstraction for stepping through a table in a detail view with next/previous/first/last options
*/
export class TableDetailDialog extends Dialog {
export class TableDetailDialog {

/* Not sure why but using "extends" was breaking the app */

public show = false;

public options = {
backdropFade: true,
dialogFade: true
};

public open() {
this.show = true;
}

public close() {
this.show = false;
}

constructor(public $scope, public gridOptions) {
super();

}

public first() {
Expand Down Expand Up @@ -72,4 +90,4 @@ module Core {
}
}
}
}
}

0 comments on commit 8e8e44a

Please sign in to comment.