Publish mathjs@6.2.4

This commit is contained in:
jos 2019-11-20 09:15:59 +01:00
parent 4e1d1c98d3
commit 2a2e888d6e
10 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@
}
</style>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
</head>
<body>

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>math.js | basic usage</title>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
</head>
<body>

View File

@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>math.js | currency conversion</title>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
<style>
body,

View File

@ -15,7 +15,7 @@
}
</style>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
</head>
<body>

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>math.js | plot</title>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
<script src="https://cdn.plot.ly/plotly-1.35.2.min.js"></script>

View File

@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>math.js | pretty printing with MathJax</title>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.3/MathJax.js?config=TeX-AMS-MML_HTMLorMML.js"></script>
<style>

View File

@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>math.js | printing HTML</title>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
<style>
body {

View File

@ -9,7 +9,7 @@
<script>
// load math.js using require.js
require(['https://unpkg.com/mathjs@6.2.3/dist/math.min.js'], function (math) {
require(['https://unpkg.com/mathjs@6.2.4/dist/math.min.js'], function (math) {
// evaluate some expression
const result = math.evaluate('1.2 * (2 + 4.5)')
document.write(result)

View File

@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>math.js | rocket trajectory optimization</title>
<script src="https://unpkg.com/mathjs@6.2.3/dist/math.min.js"></script>
<script src="https://unpkg.com/mathjs@6.2.4/dist/math.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script>
<style>

View File

@ -1,4 +1,4 @@
importScripts('https://unpkg.com/mathjs@6.2.3/dist/math.min.js')
importScripts('https://unpkg.com/mathjs@6.2.4/dist/math.min.js')
// create a parser
const parser = self.math.parser()