Skip to content

Commit

Permalink
Added a component.json for integration with Bower;
Browse files Browse the repository at this point in the history
Removed the stuff that belong to component.json from package.json;
Bumped version to 0.0.9
  • Loading branch information
ydaniv committed Mar 23, 2013
1 parent c5b4c3f commit 571a52c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 23 deletions.
21 changes: 21 additions & 0 deletions component.json
@@ -0,0 +1,21 @@
{
"name": "uijet",
"version": "0.0.9",
"main": [
"src/adapters",
"src/composites",
"src/mixins",
"src/modules",
"src/themes",
"src/widgets",
"src/uijet.css",
"src/uijet.js"
],
"ignore": [
"boilerplates",
".gitignore",
"LICENSE",
"README.md",
"volofile"
]
}
21 changes: 1 addition & 20 deletions package.json
@@ -1,23 +1,4 @@
{
"amd" : {},
"volo" : {},
"name": "uijet",
"version": "0.0.8",
"main": [
"src/adapters",
"src/composites",
"src/mixins",
"src/modules",
"src/themes",
"src/widgets",
"src/uijet.css",
"src/uijet.js"
],
"ignore": [
"boilerplates",
".gitignore",
"LICENSE",
"README.md",
"volofile"
]
"volo" : {}
}
6 changes: 3 additions & 3 deletions src/uijet.js
@@ -1,6 +1,6 @@
/**!
* UIjet UI Framework
* @version 0.0.8
* @version 0.0.9
* @license BSD License (c) copyright Yehonatan Daniv
* https://raw.github.com/ydaniv/uijet/master/LICENSE
*/
Expand Down Expand Up @@ -641,7 +641,7 @@
* @namespace uijet
*/
uijet = {
version : '0.0.8',
version : '0.0.9',
route_prefix : '',
route_suffix : '',
init_queue : [],
Expand All @@ -658,7 +658,7 @@
* @namespace click_events
*/
click_events : has_touch ?
//TODO: replace with Zepto's gestures
// can be replaced with gestures (like 'tap') if handled by other library
{ full: 'touchstart', start: 'touchstart', move: 'touchmove', end: 'touchend' } :
{ full: 'click', start: 'mousedown', move: 'mousemove', end: 'mouseup' },
transform : !!getStyleProperty('transform'),
Expand Down

0 comments on commit 571a52c

Please sign in to comment.