forked from DmitryBaranovskiy/raphael
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix-touch-events' of github.com:Touchit/raphael into To…
…uchit-fix-touch-events * 'fix-touch-events' of github.com:Touchit/raphael: Fix Touch events selection in dragMove method Fix Gruntfile to build in windows environment Fix Touch events on Firefox and Chrome Conflicts: raphael-min.js raphael.js
- Loading branch information
Showing
5 changed files
with
92 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<title>Raphael Dev testing html</title> | ||
<title>Raphael Dev testing html</title> | ||
|
||
<!-- HTML to try new developments in Raphael --> | ||
<!-- HTML to try new developments in Raphael --> | ||
|
||
<!-- Global use --> | ||
<!-- Global use --> | ||
|
||
<!-- Remember to run to pull the eve submodule --> | ||
<!-- To work with concatenated version --> | ||
<!--<script type="text/javascript" src="raphael.js"></script>--> | ||
<!-- Remember to run to pull the eve submodule --> | ||
<!-- To work with concatenated version --> | ||
<!--<script type="text/javascript" src="raphael.js"></script>--> | ||
|
||
<!-- To work with minified version --> | ||
<!--<script type="text/javascript" src="raphael-min.js"></script>--> | ||
<!-- To work with minified version --> | ||
<!--<script type="text/javascript" src="raphael-min.js"></script>--> | ||
|
||
<!-- To work with dev versions --> | ||
<script type="text/javascript" src=" ./eve/eve.js"></script> | ||
<script type="text/javascript" src="raphael.core.js"></script> | ||
<script type="text/javascript" src="raphael.svg.js"></script> | ||
<!-- To work with dev versions --> | ||
<script type="text/javascript" src=" ./eve/eve.js"></script> | ||
<script type="text/javascript" src="raphael.core.js"></script> | ||
<script type="text/javascript" src="raphael.svg.js"></script> | ||
|
||
<script type="text/javascript"> | ||
// Initialize container when document is loaded | ||
window.onload = function(){ | ||
paper = Raphael(0, 0, 640, 720, "container"); | ||
}; | ||
//Work here, in a separate script file or via command line | ||
</script> | ||
<script type="text/javascript"> | ||
// Initialize container when document is loaded | ||
window.onload = function () { | ||
paper = Raphael(0, 0, 640, 720, "container"); | ||
}; | ||
//Work here, in a separate script file or via command line | ||
</script> | ||
|
||
<!-- AMD use --> | ||
<!--<script data-main="test" src="require.js"></script>--> | ||
<!-- AMD use --> | ||
<!--<script data-main="test" src="require.js"></script>--> | ||
|
||
</head> | ||
<body> | ||
<!-- Container for svg/vml root element --> | ||
<div id="container"></div> | ||
<!-- Container for svg/vml root element --> | ||
<div id="container"></div> | ||
</body> | ||
</html> |