JIRA Problem Gatherer

I am encountering difficulties trying to adjust the size of the JIRA Issue Collector modal at my workplace.

window.ATL_JQ_PAGE_PROPS = $.extend(window.ATL_JQ_PAGE_PROPS, {
    // ==== set dialog's height to 600px ====
    height : 600
});

According to the JIRA Atlassian documentation, this should work as intended. However, the modal is only displaying at a height of 251px. Is there another method to resolve this issue?

I aim to increase the height to a minimum of 600px.

Thank you, Jonathan

Answer №1

This is the solution:

div#custom-container{
    height:600px!important;
}

iframe#custom-frame{
    height:600px!important;
}

implemented in your personal CSS file

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Swapping between running programs with JavaScript

Challenge: I am exploring the possibility of establishing a communication loop between a server-side program and client-side JavaScript. The idea is that all outputs from the program should be transmitted to JavaScript for user display, while all user inp ...

The total sum of various divs containing a mix of numbers and letters

I have a group of div elements with the same class, each containing a value in the format (X1), (X2),... I need to add up these numeric values only, like 1 + 2 + .... Since these divs are generated dynamically, I won't know how many there will be. How ...

I'm encountering an undefined JavaScript variable, how should I proceed?

$(function(){ //Location was "set". Perform actions. $("#geocodesubmit").click(function(){ var geocoder = new google.maps.Geocoder(); geocoder.geocode( { 'address': address}, function(results, status) { if (status ...

Stacking of div tags on top of each other

Looking for assistance with some CSS challenges. I am attempting to design a group of buttons using div tags, but they are all merging into one another. You can find the code at http://codepen.io/CliffTam/pen/gadEaq Could someone review the code and pro ...

When I apply properties in JavaScript, I find that I am unable to utilize the CSS "hover" feature

For a personal project I am currently working on, I decided to experiment with setting background colors using Javascript. However, I have encountered an issue where my CSS code that changes the hover property does not seem to work after implementing the J ...

filling a JavaScript array with values at particular indices

Greetings! I have a peculiar query to share. Currently, I am working on extracting the contents of multiple checkboxes and storing them in an array for AJAX purposes using the following code snippet: var post_data = $('input[name="checks[]"]:checke ...

Error: The setup method cannot be called on an undefined object in the jQuery JSON-RPC client

To invoke a remote RPC procedure using jQuery, I am utilizing the jquery-json plugin available at this link: https://github.com/datagraph/jquery-jsonrpc/ <input style='width:100px;float:left;margin:20px 10px 0px 10px;' type="button" id="JsonH ...

Leverage the function's argument to serve as the key and

Presented is a function that accepts key, value, and callback as arguments. The function has been designed with the principles of DRY (Don't Repeat Yourself) in mind. Its main purpose is to perform a lookup to an Elasticsearch endpoint using the key/v ...

Dynamic Link Generation Using jQuery

I am currently in the process of incorporating a link within a blockquote element using jQuery. At this juncture, I have developed the following code snippet: var pullQuote = $('span.pull-quote').each(function(){ var $this = $(this), hr ...

Easily transfer files without the need for a complete page refresh

The Strategy To ensure a seamless user experience, my goal is to upload files without triggering a full page refresh. All uploaded files will be temporarily stored, either in session or cookies, until the user successfully completes all form fields. File ...

Ways to retrieve dropdown values

My HTML code is as follows: <select class="height_selected"> <option>Select Height</option> <option ng-model="userHeight" ng-init="1" value="1">123 cm</option> <option ng-model="userHeight" ng-init="2" v ...

I must include a caption for the slideshow in my WordPress presentation

I'm currently facing an issue with adding captions to a slideshow. I attempted to use the post ID thumbnail, but it only displays the caption of the featured image. What I really need is to show captions for the images that are actually on the slide. ...

Ways to position a drop-down menu in the center

I need help creating a centered NavBar with dropdown options. I'm currently struggling with deciding whether to align the dropdowns left or right. Can anyone provide guidance on how to center them instead? I've attempted using the float property ...

Having trouble reaching a webmethod using JavaScript

I attempted to create a basic web method that can be accessed from JavaScript, but unfortunately I am encountering difficulties. <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script s ...

"Unleashing the fun: incorporating a variety of random songs into your

My goal is to create a central button on my webpage that, when clicked, will trigger a playlist of randomly selected songs. Once pressed, this button should vanish, giving way to an audio control window that spans the full width of the screen at the bottom ...

Ways to position the second section below the button

Is there a way to make a section of my website where, upon pressing a button, the button moves to the left and reveals collapsed text that appears below it with some padding on top? I've been trying to achieve this as a beginner by looking through doc ...

Tips for formatting text within a post using Apostrophe CMS

I recently followed your recommended guide on utilizing reusable content with pieces, available at: Below is the definition for a biography: { name: 'body', label: 'Biography', type: 'area', options: { ...

Displaying Dynamic Content in React Table Rows Based on Conditions

I'm populating a table with multiple rows using props. If a returned prop is an empty string "" , I want to exclude that row from rendering. <Table.Body> <Table.Row> <Table.Cell>Producer</Table.Cell> ...

Tips for creating two HTML buttons to switch between images

I have a pair of robot images, one displaying the front and the other displaying the back. I am looking for HTML or CSS code to switch between the two images by clicking on them, without using JavaScript or jQuery. I came across a helpful tutorial on this ...

Creating routes in ExpressJs and rendering pages using Vanilla JavaScript

When I send a request to app.get("/auth/login", (req, res) => { res.sendFile(path.join(__dirname + "/authentication/login.html")); }); using fetch("/auth/login", { method: "GET" }); I'm able to receive the HTML page as a response. ...