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
var jsColor = {}; | |
(function(self){ | |
self.hexToRgb = function(hex) { | |
if (hex[0]=="#") hex=hex.substr(1); | |
if (hex.length==3) { | |
var temp=hex; hex=''; | |
temp = /^([a-f0-9])([a-f0-9])([a-f0-9])$/i.exec(temp).slice(1); | |
for (var i=0;i<3;i++) hex+=temp[i]+temp[i]; | |
} |
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
ಠ_ಠ | |
ಠ~ಠ | |
ಠoಠ | |
ಠxಠ | |
ಠ.ಠ |
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
javascript:(function(){var%20$commits=$('.commits-condensed%20td.message'),title=$.trim($commits.last().text())+'...',pullBody='';$commits.each(function(){pullBody+=$.trim($(this).text())+'%20%20';});$('.title.required').val(title);$('#pull_body').val(pullBody);$('.form-actions .button.primary').removeAttr('disabled');})(); |
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
//This is JavaScript object is an example of what I need returned from the server. | |
{ | |
events: [ | |
{ | |
id: 1, userid: 1 | |
}, | |
{ | |
id: 2, userid: 1 | |
}, |
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
@mixin font-face( | |
$name, | |
$font-files, | |
$eot: false, | |
$weight: false, | |
$style: false | |
) { | |
$iefont: unquote("#{$eot}?iefix"); | |
@font-face { | |
font-family: quote($name); |
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
$(this).bind('mouseover focusin mouseleave blur', function(e){ | |
e.stopImmediatePropagation(); | |
}) | |
.attr('title','') | |
.tooltip({ | |
content: function(){ return IG.Tmpl.partials["schedules_quick_add"]; }, | |
position: { | |
my: 'left bottom', | |
at: 'left top', | |
of: $(this), |
NewerOlder