1
0
Fork 0

spelling: the

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-03-20 23:13:56 -04:00
commit c6a9e8be39
14 changed files with 17 additions and 17 deletions

View file

@ -140,7 +140,7 @@ function openHovercard(targetElement, contactUrl, timeNow) {
.popover({
html: true,
placement: function () {
// Calculate the placement of the the hovercard (if top or bottom)
// Calculate the placement of the hovercard (if top or bottom)
// The placement depence on the distance between window top and the element
// which triggers the hover-card
let get_position = $(targetElement).offset().top - $(window).scrollTop();

View file

@ -266,9 +266,9 @@ function eventHoverHtmlContent(event) {
// Get only template data if there exists location data
if (event.location) {
var eventLocationText = htmlToText(event.location);
// Get the the html template for formatting the location
// Get the html template for formatting the location
var eventLocationTemplate = eventHoverLocationTemplate();
// Format the event location data according to the the event location
// Format the event location data according to the event location
// template
eventLocation = eventLocationTemplate.format(eventLocationText);
}
@ -295,7 +295,7 @@ function eventHoverHtmlContent(event) {
return formatted;
}
// transform the the list view event element into formatted html
// transform the list view event element into formatted html
function formatListViewEvent(event) {
// The basic template for list view
var template =

View file

@ -361,7 +361,7 @@ function toggleJotNav(elm) {
// it redirects you to your own server. In such cases we can't
// load it into a modal.
function openWallMessage(url) {
// Split the the url in its parts.
// Split the url in its parts.
var parts = parseUrl(url);
// If the host isn't the same we can't load it in a modal.

View file

@ -279,7 +279,7 @@ $(document).ready(function () {
// Set the padding for input elements with inline buttons
//
// In Frio we use some input elements where the submit button is visually
// inside the the input field (through css). We need to set a padding-right
// inside the input field (through css). We need to set a padding-right
// to the input element where the padding value would be at least the width
// of the button. Otherwise long user input would be invisible because it is
// behind the button.