Skip to content

Commit 1409922

Browse files
committed
Merge pull request #9 from zhangxinxu/develop
Develop
2 parents 4e7d61f + 68e7181 commit 1409922

File tree

4 files changed

+41
-7
lines changed

4 files changed

+41
-7
lines changed

ReadMe.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@ mobilebone.js
22
=============
33
Single Page Switching bone for mobile web APP, Hybird APP, Phonegap, ...
44

5+
<pre>git clone git://github.com/zhangxinxu/mobilebone.git</pre>
6+
7+
use <code>npm</code>:
8+
<pre>npm install mobilebone</pre>
9+
510
Why need this?
611
-----------------
7-
Better user experience for scene switching as native APP. <br>
12+
Interaction experience is good enough to compare with the native APP. <br>
813
1. Phonegap that to native APP is a single index.html, We need the same switch effects as native.<br>
914
2. Hybird app, as you know, mixed web-app and native-app. So, it' better that they have some switching experience.<br>
1015
3. Even no refresh interaction is not something bad for mobile APP.

bower.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name" : "mobilebone",
3+
"version" : "1.1.3",
4+
"main" : "src/mobilebone.js",
5+
"license" : "MIT",
6+
"dependencies" : {},
7+
"ignore" : [
8+
"docs",
9+
"examples",
10+
"test",
11+
"*.map",
12+
"*.html",
13+
"*.md",
14+
"package.json"
15+
],
16+
"keywords": [
17+
"Mobilebone",
18+
"mobilebone.js",
19+
"javascript"
20+
]
21+
}

package.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mobilebone",
3-
"version": "1.1.1",
3+
"version": "1.1.3",
44
"description": "Bone main for mobile web APP with a sigle page mode.",
55
"main": "src/mobilebone.js",
66
"directories": {
@@ -14,11 +14,19 @@
1414
"url": "git://github.com/zhangxinxu/mobilebone.git"
1515
},
1616
"keywords": [
17-
"Mobilebone.js"
17+
"Mobilebone",
18+
"mobilebone.js",
19+
"javascript"
1820
],
1921
"author": "zhangxinxu",
20-
"license": "MIT",
22+
"license": [{
23+
"type": "MIT",
24+
"url": "https://github.com/zhangxinxu/mobilebone/blob/master/LICENSE-MIT"
25+
}],
2126
"bugs": {
22-
"url": "https://github.com/zhangxinxu/mobilebone/issues"
23-
}
27+
"url": "https://github.com/zhangxinxu/mobilebone/issues",
28+
"email" : "[email protected]"
29+
},
30+
"dependencies": {},
31+
"devDependencies": {}
2432
}

src/mobilebone.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*
3939
* @type string
4040
**/
41-
Mobilebone.VERSION = '1.1.1';
41+
Mobilebone.VERSION = '1.1.3';
4242

4343
/**
4444
* Whether bind events when dom ready

0 commit comments

Comments
 (0)