use 'js-' prefix for behavioral 'gfm-input' class
This commit is contained in:
parent
46921e690e
commit
ec1bccb261
|
@ -22,14 +22,14 @@ window.setupGfmAutoComplete = ->
|
||||||
###
|
###
|
||||||
Emoji
|
Emoji
|
||||||
###
|
###
|
||||||
$('.gfm-input').atWho ':',
|
$('.js-gfm-input').atWho ':',
|
||||||
data: autocompleteEmojiData,
|
data: autocompleteEmojiData,
|
||||||
tpl: autocompleteEmojiTemplate
|
tpl: autocompleteEmojiTemplate
|
||||||
|
|
||||||
###
|
###
|
||||||
Team Members
|
Team Members
|
||||||
###
|
###
|
||||||
$('.gfm-input').atWho '@', (query, callback) ->
|
$('.js-gfm-input').atWho '@', (query, callback) ->
|
||||||
(getMoreMembers = ->
|
(getMoreMembers = ->
|
||||||
$.getJSON(autocompleteMembersUrl, autocompleteMembersParams)
|
$.getJSON(autocompleteMembersUrl, autocompleteMembersParams)
|
||||||
.success (members) ->
|
.success (members) ->
|
||||||
|
@ -45,7 +45,7 @@ window.setupGfmAutoComplete = ->
|
||||||
# are we past the last page?
|
# are we past the last page?
|
||||||
if newMembersData.length == 0
|
if newMembersData.length == 0
|
||||||
# set static data and stop callbacks
|
# set static data and stop callbacks
|
||||||
$('.gfm-input').atWho '@',
|
$('.js-gfm-input').atWho '@',
|
||||||
data: autocompleteMembersData
|
data: autocompleteMembersData
|
||||||
callback: null
|
callback: null
|
||||||
else
|
else
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
= f.label :title do
|
= f.label :title do
|
||||||
%strong= "Subject *"
|
%strong= "Subject *"
|
||||||
.input
|
.input
|
||||||
= f.text_field :title, maxlength: 255, class: "xxlarge gfm-input"
|
= f.text_field :title, maxlength: 255, class: "xxlarge js-gfm-input"
|
||||||
.issue_middle_block
|
.issue_middle_block
|
||||||
.issue_assignee
|
.issue_assignee
|
||||||
= f.label :assignee_id do
|
= f.label :assignee_id do
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
.clearfix
|
.clearfix
|
||||||
= f.label :description, "Details"
|
= f.label :description, "Details"
|
||||||
.input
|
.input
|
||||||
= f.text_area :description, maxlength: 2000, class: "xxlarge gfm-input", rows: 14
|
= f.text_area :description, maxlength: 2000, class: "xxlarge js-gfm-input", rows: 14
|
||||||
%p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
%p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
.top_box_content
|
.top_box_content
|
||||||
= f.label :title do
|
= f.label :title do
|
||||||
%strong= "Title *"
|
%strong= "Title *"
|
||||||
.input= f.text_field :title, class: "input-xxlarge pad gfm-input", maxlength: 255, rows: 5
|
.input= f.text_field :title, class: "input-xxlarge pad js-gfm-input", maxlength: 255, rows: 5
|
||||||
.middle_box_content
|
.middle_box_content
|
||||||
= f.label :assignee_id do
|
= f.label :assignee_id do
|
||||||
%i.icon-user
|
%i.icon-user
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
= f.hidden_field :noteable_id
|
= f.hidden_field :noteable_id
|
||||||
= f.hidden_field :noteable_type
|
= f.hidden_field :noteable_type
|
||||||
= f.text_area :note, size: 255, class: 'note-text gfm-input'
|
= f.text_area :note, size: 255, class: 'note-text js-gfm-input'
|
||||||
#preview-note.preview_note.hide
|
#preview-note.preview_note.hide
|
||||||
.hint
|
.hint
|
||||||
.right Comments are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
.right Comments are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
= f.hidden_field :noteable_id
|
= f.hidden_field :noteable_id
|
||||||
= f.hidden_field :noteable_type
|
= f.hidden_field :noteable_type
|
||||||
= f.hidden_field :line_code
|
= f.hidden_field :line_code
|
||||||
= f.text_area :note, size: 255, class: 'line-note-text gfm-input'
|
= f.text_area :note, size: 255, class: 'line-note-text js-gfm-input'
|
||||||
.note_actions
|
.note_actions
|
||||||
.buttons
|
.buttons
|
||||||
= f.submit 'Add note', class: "btn save-btn submit_note submit_inline_note", id: "submit_note"
|
= f.submit 'Add note', class: "btn save-btn submit_note submit_inline_note", id: "submit_note"
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
.bottom_box_content
|
.bottom_box_content
|
||||||
= f.label :content
|
= f.label :content
|
||||||
.input= f.text_area :content, class: 'span8 gfm-input'
|
.input= f.text_area :content, class: 'span8 js-gfm-input'
|
||||||
.actions
|
.actions
|
||||||
= f.submit 'Save', class: "save-btn btn"
|
= f.submit 'Save', class: "save-btn btn"
|
||||||
= link_to "Cancel", project_wiki_path(@project, :index), class: "btn cancel-btn"
|
= link_to "Cancel", project_wiki_path(@project, :index), class: "btn cancel-btn"
|
||||||
|
|
Loading…
Reference in a new issue