Created
February 18, 2013 17:50
-
-
Save amireh/4979207 to your computer and use it in GitHub Desktop.
some modal i'd like to use in a view
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define [ | |
'jquery' | |
'underscore' | |
'Backbone' | |
'views/BaseDialogView' | |
], (I18n, $, _, Backbone, BaseDialogView) -> | |
class StudentSessionAlertView extends BaseDialogView | |
initialize: -> | |
super({ | |
resizable: false | |
dialogOptions: { | |
buttons: [ | |
text: I18n.t '#buttons.okay', 'Okay' | |
click: @close | |
] | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment