Skip to content

Instantly share code, notes, and snippets.

@amireh
Created February 18, 2013 17:50
Show Gist options
  • Save amireh/4979207 to your computer and use it in GitHub Desktop.
Save amireh/4979207 to your computer and use it in GitHub Desktop.
some modal i'd like to use in a view
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