mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-21 02:26:12 +10:00
14 lines
251 B
CoffeeScript
14 lines
251 B
CoffeeScript
((w) ->
|
|
|
|
w.gl or= {}
|
|
w.gl.utils or= {}
|
|
|
|
w.gl.utils.getProjectSlug = ->
|
|
|
|
$body = $ 'body'
|
|
isInProjectPage = $body.data('page').split(':')[0] is 'projects'
|
|
|
|
return if isInProjectPage then $body.data 'project' else null
|
|
|
|
) window
|