This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> Fb.new(User.first.token).friends | |
User Load (0.3ms) SELECT `users`.* FROM `users` LIMIT 1 | |
get https://graph.facebook.com/me/friends?access_token=AAACR6sxig9cBAFnlu6MysWGIGgklHCxYKOZBKnYJwy8lnEeLGWXwZA4z0TEZAZAh2uQY4d50MopZCuaVemIAzS85miFBSU3H8kDLAHPaTkgZDZD&fields=first_name%20%2Clast_name%20%2Cbirthday%20%2Cbio%20%2Cgender%20%2Clocale%20%2Cverified%20%2Ctimezone%20%2Cusername | |
200 | |
access-control-allow-origin: "*" | |
cache-control: "private, no-cache, no-store, must-revalidate" | |
content-type: "text/javascript; charset=UTF-8" | |
etag: "\"8ae1b5c525d219d2f3c5e83be46e67b2700de17d\"" | |
expires: "Sat, 01 Jan 2000 00:00:00 GMT" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[submodule "app/assets/javascripts/Packages/qfocuser"] | |
path = app/assets/javascripts/Packages/qfocuser | |
url = git://github.com/lovelyscalabledrawings/qfocuser.git | |
[submodule "app/assets/javascripts/Packages/mootools-custom-event"] | |
path = app/assets/javascripts/Packages/mootools-custom-event | |
url = git://github.com/cpojer/mootools-custom-event.git | |
[submodule "app/assets/javascripts/Packages/art"] | |
path = app/assets/javascripts/Packages/art | |
url = git://github.com/kamicane/art.git | |
[submodule "app/assets/javascripts/Packages/mootools-color"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Giftofoni | |
filename: giftofoni.js | |
license: Public domain, http://unlicense.org | |
copyright: Koppel Andrey | |
author: lastdrop | |
category: Interface | |
sources: | |
- Source/Application.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[submodule "public/javascripts/Packages/qfocuser"] | |
path = public/javascripts/Packages/qfocuser | |
url = git://github.com/Inviz/qfocuser.git | |
[submodule "public/javascripts/Packages/mootools-custom-event"] | |
path = public/javascripts/Packages/mootools-custom-event | |
url = git://github.com/cpojer/mootools-custom-event.git | |
[submodule "public/javascripts/Packages/art"] | |
path = public/javascripts/Packages/art | |
url = git://github.com/kamicane/art.git | |
[submodule "public/javascripts/Packages/mootools-color"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
--- | |
script: Select.js | |
description: Basic selectbox | |
license: Public domain (http://unlicense.org). | |
authors: Yaroslaff Fedin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IGC.Widget.Select = new Class({ | |
options: { | |
tag: 'select', | |
pseudos: Array.object('focusable', 'value', 'form-associated'), | |
states: Array.fast('collapsed'), | |
events: { | |
self: { | |
set: function(item) { | |
this.setValue(item.getValue()); | |
this.write(item.getTitle(), true); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gamepon.Widget.Timer = new Class({ | |
options: { | |
actions: { | |
timer: { | |
enable: function() { | |
var time = this.element.get('html').split(':'); | |
this.seconds = time[2].toInt() + (time[1] * 60).toInt() + (time[0] * 3600).toInt(); | |
this.decrementTime.periodical(1000, this); | |
}, | |
disable: function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%ol | |
%li | |
.input | |
%input{:type => 'text'} | |
%aside< | |
%a.button{:href => '#'} Убрать | |
%li | |
.input | |
%input{:type => 'text'} | |
%aside< |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wrongler.Widget.Input.Date = new Class({ | |
Includes: [ | |
LSD.Widget, | |
LSD.Trait.Date | |
], | |
options: { | |
tag: 'input', | |
attributes: { | |
type: 'date' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LSD.Mixin.Animation = new Class({ | |
behaviour: '[animation]', | |
options: { | |
animation: {} | |
}, | |
getAnimation: function() { | |
if (!this.animation) { | |
this.animation = this.getAnimatedElement().set('tween', this.options.animation).get('tween'); |