This file contains 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
//this is to patch a bug with the jquery.ui.tabs API | |
// http://bugs.jqueryui.com/ticket/4941 | |
// http://bugs.jqueryui.com/ticket/8637 | |
// it has to do with the <base href> tag in <head> and jquery.ui.tabs | |
// being smart about figuring out weather to AJAX a tab or not | |
;(function() { | |
var tabsInitialised = false; | |
var _tabs = $.fn.tabs; | |
var updateBaseHrefs = function() { |
This file contains 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
(function(){ | |
o = {} | |
o.a = 1 | |
o.a == 1 && console.log("o is one:", o.a) | |
o.a == 2 && console.log("false, this won't run") | |
o.b && console.log("undefined is falsy, this wont run") | |
//it's a little nicer than wrapping if{ } statements: | |
if(o.a == 1) { console.log("o is one:", o.a) } |
This file contains 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
// an element with class 'font_resize' with css properties: | |
// * max-height | |
// * max-width | |
// * font-size | |
// the element has children span elements, the font size inside these spans will re resized. | |
;(function($){ | |
$.fn.fontResize = function(options){ | |
var spans = $('span:visible', this); | |
var heightMax = parseInt($(this).css('max-height'), 10), |
This file contains 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
# 2.0.0dev :175 > @three = Three.new | |
# => #<Three:0x007fad66054540> | |
# 2.0.0dev :176 > @three.my_method | |
# im in class three | |
# im in the module | |
# im in class two | |
# im in class one | |
# @three.my_method_2 | |
# <Three:0x108ca55e0> |
This file contains 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
1.9.3p392 :001 > session = "BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTVmMGI3OTEzOTMzYzdlMzUwMjAzZTliMDk1NzNlYjkzBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWQ3RktCWkFJN0ZnOEJ0T0FDRmF4VnhQcXZKdFVBTnYxaHZiRFY0b3FUY2c9BjsARkkiDHVzZXJfaWQGOwBGaQY%3D--d43bf61a0997f65b5c9c1492102bf4f40fabd5fd" | |
=> "BAh7CEkiD3Nlc3Npb25faWQGOgZFRkkiJTVmMGI3OTEzOTMzYzdlMzUwMjAzZTliMDk1NzNlYjkzBjsAVEkiEF9jc3JmX3Rva2VuBjsARkkiMWQ3RktCWkFJN0ZnOEJ0T0FDRmF4VnhQcXZKdFVBTnYxaHZiRFY0b3FUY2c9BjsARkkiDHVzZXJfaWQGOwBGaQY%3D--d43bf61a0997f65b5c9c1492102bf4f40fabd5fd" | |
1.9.3p392 :002 > Marshal.load(Base64.decode64(session.split("--").first)) => | |
{"session_id"=>"5f0b7913933c7e350203e9b09573eb93", | |
"_csrf_token"=>"d7FKBZAI7Fg8BtOACFaxVxPqvJtUANv1hvbDV4oqTcg=", | |
"user_id"=>1} |
This file contains 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
Array.prototype.remove = function(o){ | |
var i = this.indexOf(o) | |
, v = this[i]; | |
this.splice(i, 1); | |
return v; | |
} |
This file contains 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
// Border Radius | |
@mixin round($radius: 4px) { | |
-moz-border-radius: $radius; | |
-webkit-border-radius: $radius; | |
border-radius: $radius; | |
} | |
// Box Shadow | |
@mixin shadow($shadow1: 0 0 4px #0A0A0A, $shadow2:false, $shadow3:false, $shadow4:false, $shadow5:false) { | |
$params: $shadow1; | |
@if $shadow2 |
This file contains 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
<div id='nav'> | |
<ul class='nav-list'> | |
<li class='nav-item'><a href="javascript://">Home</a></li> | |
<li class='nav-item'><a href="javascript://">There</a></li> | |
</ul> | |
</div> | |
<div id='flash-container' class='flash-container'> | |
</div> | |
<div id='content'> | |
Here is some content. |
This file contains 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
[color] | |
ui = true | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold |
This file contains 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
myFn = function(msg){ | |
return msg + this.status; | |
} | |
o = { status: "killing it" } | |
myFn.apply(o, ["Your status is: "]) | |
//>> "Your status is: killing it" | |
OlderNewer