BigW Consortium Gitlab

wikis.js.coffee 260 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
class Wikis
  constructor: ->
    $('.build-new-wiki').bind "click", ->
      field = $('#new_wiki_path')
      slug = field.val()
      path = field.attr('data-wikis-path')

      if(slug.length > 0)
        location.href = path + "/" + slug


@Wikis = Wikis