Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added forceUpdate parameter to update canvasView function #1914

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
- Scott Kieronski <[email protected]>
- Samuel Asensi <[email protected]>
- Takahiro Nishino <[email protected]>
- Peter Bucher <[email protected]>
5 changes: 3 additions & 2 deletions src/view/CanvasView.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,11 @@ var CanvasView = View.extend(/** @lends CanvasView# */{
* event handlers for interaction, animation and load events, this method is
* invoked for you automatically at the end.
*
* @param {Boolean} {forceUpdate} force the view to update
* @return {Boolean} {@true if the view was updated}
*/
update: function() {
if (!this._needsUpdate)
update: function(forceUpdate) {
if (!this._needsUpdate && !forceUpdate )
return false;
var project = this._project,
ctx = this._context,
Expand Down