Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / app / components / reveal-modal.js @ 75e13060

History | View | Annotate | Download (327 Bytes)

1
App.RevealModalComponent = Ember.Component.extend({
2
    actions: {
3
        ok: function () {
4
            this.sendAction("ok", this.get('param'));
5
            $(this.$()[0]).foundation('reveal', 'close');
6
        },
7
        close: function () {
8
            $(this.$()[0]).foundation('reveal', 'close');                
9
        },
10
    },
11
});