add cube quartic euqation

This commit is contained in:
mkwiser
2014-09-05 08:34:45 +08:00
parent cfa4f83e37
commit 51e90c8f32
8 changed files with 487 additions and 10 deletions

25
demo/math.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>测试render</title>
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-2/esl.js"></script>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
<script>
require.config({
baseUrl: '../src',
paths: {
demo: '../demo/js',
}
});
define('jquery', $);
</script>
<script>
require(['demo/math']);
</script>
</body>
</html>