Skip to content

Commit

Permalink
update version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
genify committed Nov 5, 2014
1 parent 1cd8caa commit 38abeed
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
--------------------------------------------------------
- 修正define对实例返回结果的注入
- 增加json!类型的插件注入
- 增加regularjs!类型的插件注入
- 增加API/控件支持
* util/selector/cascade
* util/suggest/at
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nej",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://github.com/genify/nej",
"authors": ["genify <caijf@corp.netease.com>"],
"description": "JavaScript Cross-Platform Framework",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nej-framework",
"description": "JavaScript Cross-Platform Framework",
"version": "0.1.0",
"version": "0.2.0",
"license": "MIT",

"keywords": ["nej","javascript","cross platform","framework"],
Expand Down
5 changes: 1 addition & 4 deletions res/nej_proxy_upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
window.result = '{"url":"http://192.168.146.84:1122/xhr/3.jpg"}';
</script>
<script>
var _result = 'NEJ-UPLOAD-RESULT:{\
"key":"'+window.name+'",\
"result":"'+encodeURIComponent(result)+'"\
}';
var _result = 'NEJ-UPLOAD-RESULT:{"key":"'+window.name+'","result":"'+encodeURIComponent(result)+'"}';
if (window.postMessage){
parent.postMessage(_result,'*');
}else{
Expand Down
5 changes: 1 addition & 4 deletions res/src/nej_proxy_upload.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
window.result = '{"url":"http://192.168.146.84:1122/xhr/3.jpg"}';
</script>
<script>
var _result = 'NEJ-UPLOAD-RESULT:{\
"key":"'+window.name+'",\
"result":"'+encodeURIComponent(result)+'"\
}';
var _result = 'NEJ-UPLOAD-RESULT:{"key":"'+window.name+'","result":"'+encodeURIComponent(result)+'"}';
if (window.postMessage){
parent.postMessage(_result,'*');
}else{
Expand Down
2 changes: 1 addition & 1 deletion src/ui/editor/command/uploadimage.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<a class="u-btn f-ib upload j-tab f-fl" name="upload"><span class="img-upload">上传图片</span></a>
<a class="u-btn f-ib extern j-tab" name="extern"><span class="img-extern">引用站外图片</span></a>
<image class="j-ztag u-image" />
<img class="j-ztag u-image" />
</div>
<div class="j-cnt">
<div class="choose_file" name="select_image">
Expand Down
1 change: 1 addition & 0 deletions src/util/form/demo/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
'util/template/tpl',
'../form.js'
],function(_v,_ex,_e,_t){
"use strict";
_e._$parseTemplate('abc');
var _webform;
var _form = _e._$getNodeTemplate('abc');
Expand Down

0 comments on commit 38abeed

Please sign in to comment.