Skip to content

Instantly share code, notes, and snippets.

View ppcano's full-sized avatar

Pepe Cano ppcano

View GitHub Profile
@ppcano
ppcano / jitsulog.json
Created December 15, 2011 21:22
jitsu log json
[
true,
true,
{
"stack": "Error: Save package.json cancelled.\n at /Users/pepe/.nvm/v0.4.7/lib/node_modules/jitsu/lib/jitsu/package.js:250:64\n at /Users/pepe/.nvm/v0.4.7/lib/node_modules/jitsu/node_modules/prompt/lib/prompt.js:179:34\n at /Users/pepe/.nvm/v0.4.7/lib/node_modules/jitsu/node_modules/async/lib/async.js:126:25\n at /Users/pepe/.nvm/v0.4.7/lib/node_modules/jitsu/node_modules/prompt/lib/prompt.js:174:7\n at /Users/pepe/.nvm/v0.4.7/lib/node_modules/jitsu/node_modules/prompt/lib/prompt.js:232:14\n at ReadStream.data (/Users/pepe/.nvm/v0.4.7/lib/node_modules/jitsu/node_modules/prompt/lib/prompt.js:365:7)\n at ReadStream.emit (events.js:64:17)\n at ReadStream._onReadable (net.js:671:31)\n at IOWatcher.onReadable [as callback] (net.js:177:10)",
"message": "Save package.json cancelled."
},
{
"stack": "Error: Nodejitsu Error (500): Internal Server Error\n at Request._callback (/Users/pepe/.nvm/v0.4.7/lib/node_modules/jitsu/node_modules/nodejitsu-api/lib/client/client.js:9
@ppcano
ppcano / scrollview.js
Created December 25, 2011 13:27
Ember iScrollView
App.ScrollView = Em.View.extend({
didInsertElement: function() {
var id = get( this, 'elementId');
this.iScroll = new iScroll(id);
}
});
@ppcano
ppcano / controller_view.js
Created December 27, 2011 16:04
Observes a view to be notified after DOM insertion
ControlledView = SC.Mixin.create({
isInsertedElement: false,
didInsertElement: function(){
set(this, 'isInsertedElement', true);
}
});
@ppcano
ppcano / ui.js
Created December 27, 2011 17:22
Modal View Controller First Attempt
Luh.Ui = {};
Luh.Ui.ControlledView = Em.Mixin.create({
didInsertElement: function() {
set(this, 'isInsertedElement', true);
}
});
@ppcano
ppcano / animation_style.js
Created December 27, 2011 19:32
Creating modal views with emberjs and movejs
Luh.Ui.AnimationStyle = {
FROM_DOWN: 0
, FROM_UP: 1
, FROM_LEFT: 2
, FROM_RIGHT: 3
, NONE: 4
};
@ppcano
ppcano / app.js
Created January 4, 2012 18:20
Navigation View ( left to right animation ) with Ember.
App.navMainView = Luh.Ui.NavigationMainView.create({
});
App.NavigationView = Luh.Ui.NavigationView.extend({
hasBackBinding: Em.Binding.oneWay('App.navMainView.hasBack'),
template: Em.Handlebars.compile('<div id="header">{{#if hasBack}}{{#view App.BackButton class="button bordered back"}}HBack{{/view}}{{/if}}{{#view App.NextButton class="button bordered next"}}Next{{/view}}</div><div id="footer"></div>')
});
@ppcano
ppcano / swipe_view.js
Created January 7, 2012 00:05
Ember SwipeView for mobile devices ( using only three master pages with infinite content)
Luh.Ui.SwipeView = Ember.ContainerView.extend({
width: null,
height: null,
content: null,
duration: '1s',
swipeOptions: {
@ppcano
ppcano / swipe.css
Created January 7, 2012 13:57
Ember SwipeView for mobile devices based on SwipeView's approach of @cubiq
.swipe_item {
position: absolute;
-webkit-transform: translateZ(0);
top: 0px;
height: 100%;
width: 100%;
}
.swipe_slider {
position: relative;
@ppcano
ppcano / app_gesture_manager.js
Created January 9, 2012 15:50
why the computed property is not working....
Em.AppGestureManager = Em.Object.extend({
content: Ember.A(),
isActiveGesture: Ember.computed( function() {
return get(this, 'content').get('length') > 0;
}).property('content.@each'),
@ppcano
ppcano / animatable_view.js
Created January 11, 2012 16:11
Control Animations on Ember Views
AnimatableView = Ember.ContainerView.extend(Em.Animatable,{
executeAnimation: function() {
.......
this.animate({duration: that.duration, stopEventHandling:true}, function() {
# perform animations based on your JS choices
move('#'+id)
.x(translatePosition)