Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
2f43b381
Commit
2f43b381
authored
Nov 22, 2011
by
Francois Marier
Committed by
Gerrit Code Review
Nov 22, 2011
Browse files
Merge "Stop blocktype images from freezing during drag in IE (bug #891916)"
parents
40bbf44b
46c990ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/js/views.js
View file @
2f43b381
...
...
@@ -106,6 +106,12 @@ function ViewManager() {
});
}
if
(
self
.
isIE7
)
{
// Disable IE's default image dragging function, otherwise blocktypes being dragged
// sometimes freeze and then stick to the cursor on mouseup
document
.
ondragstart
=
function
()
{
return
false
;
};
}
// Now we're done, remove the loading message and display the page
removeElement
(
'
views-loading
'
);
showElement
(
self
.
bottomPane
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment