Add better class names to modals to allow for better customized css targeting

This commit is contained in:
2018-12-06 09:45:05 -05:00
parent 1ee8ab64a0
commit 9881c5d7d4
9 changed files with 24 additions and 94 deletions
+1
View File
@@ -77,3 +77,4 @@ window.$translations =
create_new_filter_button: '${general.create}'
cannot_create_on_monday: 'Creating a filter on Monday is ambiguous since the smart relative time feature cannot distinguish today from the start of the week'
cannot_create_on_first_day_of_month: 'Creating a filter on the first day of the month is ambiguous since the smart relative time feature cannot distinguish today from the start of the month'
make_default: 'Make default'
+4
View File
@@ -17,6 +17,10 @@ config = ->
attributes = JSON.parse(request.requestBody)['dunlop/user_filter']
schema.dunlopUserFilters.create(attributes)
@delete '/dunlop/user_filters/:id', (schema, request) ->
model = schema.dunlopUserFilters.find(request.params.id)
null
# These comments are here to help you get started. Feel free to delete them.
###