summaryrefslogtreecommitdiff
path: root/public/assets/js/lib/views/login/login.js
blob: 06d8808389c84134102dd0224addd61bf1d82733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var LoginView = FormView.extend({

  events: {
  },
  
  initialize: function(opt){
    // opt.parent = parent
  },
  
  success: function(){
    window.location.href = "/index"
  },

})