bump version remove js version property

This commit is contained in:
carson 2020-05-17 07:01:01 -07:00
parent 30a9abdd33
commit 52f58241f6
6 changed files with 4 additions and 9 deletions

View File

@ -15,7 +15,7 @@ Htmx is small ([~6k min.gz'd](https://unpkg.com/htmx.org/dist/)), IE11 compatibl
```html
<!-- Load from unpkg -->
<script src="https://unpkg.com/htmx.org@0.0.3"></script>
<script src="https://unpkg.com/htmx.org@0.0.4"></script>
<!-- have a button POST a click via AJAX -->
<button hx-post="/clicked" hx-swap="outerHTML">
Click Me

View File

@ -5,7 +5,7 @@
"AJAX",
"HTML"
],
"version": "0.0.3",
"version": "0.0.4",
"homepage": "https://htmx.org/",
"bugs": {
"url": "https://github.com/bigskysoftware/htmx/issues"

View File

@ -1321,7 +1321,6 @@ var htmx = htmx || (function () {
defaultSettleDelay:100,
includeIndicatorStyles:true
},
version: "0.0.2",
_:internalEval
}
}

View File

@ -8,10 +8,6 @@ describe("Core htmx API test", function(){
clearWorkArea();
});
it('version is correct', function(){
htmx.version.should.equal("0.0.2");
});
it('onLoad is called... onLoad', function(){
// also tests on/off
this.server.respondWith("GET", "/test", "<div id='d1' hx-get='/test'></div>")

View File

@ -91,7 +91,7 @@ It can be used via [NPM](https://www.npmjs.com/) as "`htmx.org`" or downloaded o
[unpkg](https://unpkg.com/browse/htmx.org/) or your other favorite NPM-based CDN:
``` html
<script src="https://unpkg.com/htmx.org@0.0.3"></script>
<script src="https://unpkg.com/htmx.org@0.0.4"></script>
```
## <a name="ajax"></a> [AJAX](#ajax)

View File

@ -22,7 +22,7 @@ Htmx is small ([~6k min.gz'd](https://unpkg.com/htmx.org/dist/)), IE11 compatibl
```html
<!-- Load from unpkg -->
<script src="https://unpkg.com/htmx.org@0.0.3"></script>
<script src="https://unpkg.com/htmx.org@0.0.4"></script>
<!-- have a button POST a click via AJAX -->
<button hx-post="/clicked" hx-swap="outerHTML">
Click Me