initial commit

This commit is contained in:
Andrew
2015-03-17 16:19:16 -05:00
parent fc5025b88c
commit df34a33736
41 changed files with 124 additions and 4 deletions

View File

View File

View File

View File

View File

View File

View File

View File

8
src/components/ion.js Normal file
View File

@@ -0,0 +1,8 @@
class Ion {
assign(...args) {
for (let obj of args) {
//...extend this
}
}
}

View File

View File

View File

@@ -0,0 +1,20 @@
import {TabbarConfig} from '/components/tabbar/tabbar';
import {Draggable} from '/behaviors/draggable';
TabbarConfig.platform('android')
.template(require('./android-template.html'))
.mixin(function(tabbar) {
Draggable(tabbar);
tabbarInstance.setAsHeader();
tabbar.assign({
onDragStart() {},
onDrag() {},
onDragEnd() {}
});
});
/*
<ion-tabs config-platform-android />
*/

View File

@@ -0,0 +1,8 @@
.tabbar.with-inkbar {
.inkbar {
bottom: 0;
height: 3px;
color: yellow;
}
}

View File

View File

View File

View File

View File

@@ -0,0 +1,3 @@
class Tabbar extends Ion {
}

View File

View File