Allow user to select actual version of a mod

This commit is contained in:
Andrew Miner
2015-01-22 12:06:47 -08:00
parent 6ef3473534
commit 64b6b97807
10 changed files with 93 additions and 52 deletions
@@ -34,7 +34,7 @@ module.exports = class ModPackController extends BaseController
# BaseController Overrides #####################################################################
onDidRender: ->
@$table = @$('table')
@$mods = @$('.mods')
@$toolbar = @$('.toolbar')
super
@@ -56,7 +56,8 @@ module.exports = class ModPackController extends BaseController
controller.render()
@_controllers.push controller
controller.$el.hide duration:0
@$table.append controller.$el
@$mods.append controller.$el
controller.$el.slideDown duration:Duration.normal
index++