-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix category helps, and fix favorites help
- Loading branch information
Showing
11 changed files
with
55 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<span class="helpheader"> | ||
<i class="fa fa-question-circle" id="helpfavoritecategoriesid" data-toggle="popover" data-placement='left' aria-hidden="true" data-original-title="<%= t('document.help.favorite1_html')%>" href='#' value="" ></i> | ||
<div id="contentfavoritecategoriesid" style="display: none"> | ||
<div class="popover-body"> | ||
<p><%= t('document.help.favorite2_html')%> </p> | ||
</div> | ||
<div class="popover-footer popoverfix"><%= t('document.help.overview_html')%></div> | ||
</div> | ||
</span> | ||
|
||
<%content_for :javascript do%> | ||
$('#helpfavoritecategoriesid').popover({ | ||
html : true, | ||
content: function() { | ||
return $('#contentfavoritecategoriesid').html(); | ||
} | ||
}); | ||
<%end%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<span class="helpheader"> | ||
<i class="fa fa-question-circle" id="helpowncategoriesid" data-toggle="popover" data-placement='left' aria-hidden="true" data-original-title="<%= t('document.help.categories1_html')%>" href='#' value="" ></i> | ||
<div id="contentowncategoriesid" style="display: none"> | ||
<div class="popover-body"> | ||
<p><%= t('document.help.categories2_own_html')%> </p> | ||
</div> | ||
<div class="popover-footer popoverfix"><%= t('document.help.overview_html')%></div> | ||
</div> | ||
</span> | ||
|
||
<%content_for :javascript do%> | ||
$('#helpowncategoriesid').popover({ | ||
html : true, | ||
content: function() { | ||
return $('#contentowncategoriesid').html(); | ||
} | ||
}); | ||
<%end%> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters