Skip to content

Commit 8903ced

Browse files
committed
- remove unnecessary log
- bump version
1 parent a3fafe6 commit 8903ced

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
- remove `setContext()` and `setCtx()`, in favor of `ctx()`.
88

99

10+
## v1.3.2
11+
12+
- remove unnecessary log
13+
14+
1015
## v1.3.1
1116

1217
- fix bug: subview rendering should update `ctxs`

dist/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -365,9 +365,6 @@
365365
handler = function(arg$){
366366
var local, data, ctx, ctxs;
367367
local = arg$.local, data = arg$.data, ctx = arg$.ctx, ctxs = arg$.ctxs;
368-
if (n === 'prj' && e) {
369-
console.log("blah: ", data.blah);
370-
}
371368
if (e) {
372369
local._view.ctx(data);
373370
}

dist/index.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"browser": "dist/index.min.js",
66
"main": "dist/index.min.js",
77
"description": "view template micro framework",
8-
"version": "1.3.1",
8+
"version": "1.3.2",
99
"files": [
1010
"dist/**/*"
1111
],

src/ldview.ls

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ ldview.prototype = Object.create(Object.prototype) <<< do
198198
})
199199
local._view.init!
200200
handler = ({local,data,ctx,ctxs}) ->
201-
if n == \prj and e => console.log "blah: ", data.blah
202201
if e => local._view.ctx(data)
203202
local._view.ctxs(if ctxs => [ctx] ++ ctxs else [ctx])
204203
local._view.render!

web/static/assets/lib/ldview/dev/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -365,9 +365,6 @@
365365
handler = function(arg$){
366366
var local, data, ctx, ctxs;
367367
local = arg$.local, data = arg$.data, ctx = arg$.ctx, ctxs = arg$.ctxs;
368-
if (n === 'prj' && e) {
369-
console.log("blah: ", data.blah);
370-
}
371368
if (e) {
372369
local._view.ctx(data);
373370
}

web/static/assets/lib/ldview/dev/index.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)