Simplified demo shell layout

- removed bootstrap usage for files view
- removed checkbox panel from file view
This commit is contained in:
Denys Vuika
2016-05-06 11:19:08 +01:00
parent 3b0e8dd1ac
commit 54b1707b30
4 changed files with 24 additions and 67 deletions

View File

@@ -15,7 +15,6 @@
* limitations under the License.
*/
import {Component} from 'angular2/core';
import {
DOCUMENT_LIST_DIRECTIVES,
@@ -47,14 +46,6 @@ export class FilesComponent {
window.alert('my custom action handler');
}
onItemClick($event) {
console.log($event.value);
this.events.push({
name: 'Item Clicked',
value: $event.value
});
}
myCustomAction1(event) {
alert('Custom document action for ' + event.value.displayName);
}