Getting canvas height and width from model and creating canvas with those dimensionsHow do I retrieve an HTML element's actual width and height?How to get the value from the GET parameters?Get the browser viewport dimensions with JavaScriptGet selected text from a drop-down list (select box) using jQueryResizing an image in an HTML5 canvasHow to apply !important using .css()?jQuery Get Selected Option From DropdownGetting error: Peer authentication failed for user “postgres”, when trying to get pgsql working with railsHTML5 Canvas 100% height and widthSetting canvas width / height on creation
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
Information to fellow intern about hiring?
How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
Need help identifying/translating a plaque in Tangier, Morocco
Is ipsum/ipsa/ipse a third person pronoun, or can it serve other functions?
Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
Check if two datetimes are between two others
Does a dangling wire really electrocute me if I'm standing in water?
Why doesn't a const reference extend the life of a temporary object passed via a function?
Can a planet have a different gravitational pull depending on its location in orbit around its sun?
What does it exactly mean if a random variable follows a distribution
Is there a name of the flying bionic bird?
How to manage monthly salary
"My colleague's body is amazing"
Is this food a bread or a loaf?
Why was the "bread communication" in the arena of Catching Fire left out in the movie?
Could a US political party gain complete control over the government by removing checks & balances?
Patience, young "Padovan"
A poker game description that does not feel gimmicky
Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore
What do you call words made from common English words?
Is Social Media Science Fiction?
Getting canvas height and width from model and creating canvas with those dimensions
How do I retrieve an HTML element's actual width and height?How to get the value from the GET parameters?Get the browser viewport dimensions with JavaScriptGet selected text from a drop-down list (select box) using jQueryResizing an image in an HTML5 canvasHow to apply !important using .css()?jQuery Get Selected Option From DropdownGetting error: Peer authentication failed for user “postgres”, when trying to get pgsql working with railsHTML5 Canvas 100% height and widthSetting canvas width / height on creation
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
So in my mind this should be pretty simply but I cannot seem to get this right. When creating a whiteboard, the user inputs two numbers, height and width. I'm trying to apply these given numbers to the canvas object but am struggling. Here's my code:
javascript html ruby-on-rails
add a comment |
So in my mind this should be pretty simply but I cannot seem to get this right. When creating a whiteboard, the user inputs two numbers, height and width. I'm trying to apply these given numbers to the canvas object but am struggling. Here's my code:
javascript html ruby-on-rails
add a comment |
So in my mind this should be pretty simply but I cannot seem to get this right. When creating a whiteboard, the user inputs two numbers, height and width. I'm trying to apply these given numbers to the canvas object but am struggling. Here's my code:
javascript html ruby-on-rails
So in my mind this should be pretty simply but I cannot seem to get this right. When creating a whiteboard, the user inputs two numbers, height and width. I'm trying to apply these given numbers to the canvas object but am struggling. Here's my code:
javascript html ruby-on-rails
javascript html ruby-on-rails
edited Mar 22 at 18:35
JordanMorris
asked Mar 22 at 1:49
JordanMorrisJordanMorris
85
85
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
<div id=thecanvas>
<canvas id="board" width="<%= @whiteboard.canvas_width %>"
height="<%= @whiteboard.canvas_height %>">
</canvas>
</div>
Rails expects <%= %>
tags for Ruby code in a template file.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291754%2fgetting-canvas-height-and-width-from-model-and-creating-canvas-with-those-dimens%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
<div id=thecanvas>
<canvas id="board" width="<%= @whiteboard.canvas_width %>"
height="<%= @whiteboard.canvas_height %>">
</canvas>
</div>
Rails expects <%= %>
tags for Ruby code in a template file.
add a comment |
<div id=thecanvas>
<canvas id="board" width="<%= @whiteboard.canvas_width %>"
height="<%= @whiteboard.canvas_height %>">
</canvas>
</div>
Rails expects <%= %>
tags for Ruby code in a template file.
add a comment |
<div id=thecanvas>
<canvas id="board" width="<%= @whiteboard.canvas_width %>"
height="<%= @whiteboard.canvas_height %>">
</canvas>
</div>
Rails expects <%= %>
tags for Ruby code in a template file.
<div id=thecanvas>
<canvas id="board" width="<%= @whiteboard.canvas_width %>"
height="<%= @whiteboard.canvas_height %>">
</canvas>
</div>
Rails expects <%= %>
tags for Ruby code in a template file.
answered Mar 22 at 15:51
Veridian DynamicsVeridian Dynamics
65929
65929
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291754%2fgetting-canvas-height-and-width-from-model-and-creating-canvas-with-those-dimens%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown