mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
ie8 support
This commit is contained in:
parent
111663ce4b
commit
2fffe39182
14 changed files with 488 additions and 168 deletions
143
border-radius.htc
Normal file
143
border-radius.htc
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
--Do not remove this if you are using--
|
||||
Original Author: Remiz Rahnas
|
||||
Original Author URL: http://www.htmlremix.com
|
||||
Published date: 2008/09/24
|
||||
|
||||
Changes by Nick Fetchak:
|
||||
- IE8 standards mode compatibility
|
||||
- VML elements now positioned behind original box rather than inside of it - should be less prone to breakage
|
||||
Published date : 2009/11/18
|
||||
|
||||
|
||||
<public:attach event="oncontentready" onevent="oncontentready('v08vnSVo78t4JfjH')" />
|
||||
<script type="text/javascript">
|
||||
|
||||
// findPos() borrowed from http://www.quirksmode.org/js/findpos.html
|
||||
function findPos(obj) {
|
||||
var curleft = curtop = 0;
|
||||
|
||||
if (obj.offsetParent) {
|
||||
do {
|
||||
curleft += obj.offsetLeft;
|
||||
curtop += obj.offsetTop;
|
||||
} while (obj = obj.offsetParent);
|
||||
}
|
||||
|
||||
return({
|
||||
'x': curleft,
|
||||
'y': curtop
|
||||
});
|
||||
}
|
||||
|
||||
function oncontentready(classID) {
|
||||
if (this.className.match(classID)) { return(false); }
|
||||
|
||||
if (!document.namespaces.v) { document.namespaces.add("v", "urn:schemas-microsoft-com:vml"); }
|
||||
|
||||
this.className = this.className.concat(' ', classID);
|
||||
var arcSize = Math.min(parseInt(this.currentStyle['-moz-border-radius'] ||
|
||||
this.currentStyle['-webkit-border-radius'] ||
|
||||
this.currentStyle['border-radius'] ||
|
||||
this.currentStyle['-khtml-border-radius']) /
|
||||
Math.min(this.offsetWidth, this.offsetHeight), 1);
|
||||
var fillColor = this.currentStyle.backgroundColor;
|
||||
var fillSrc = this.currentStyle.backgroundImage.replace(/^url\("(.+)"\)$/, '$1');
|
||||
var strokeColor = this.currentStyle.borderColor;
|
||||
var strokeWeight = parseInt(this.currentStyle.borderWidth);
|
||||
var stroked = 'true';
|
||||
if (isNaN(strokeWeight)) {
|
||||
strokeWeight = 0;
|
||||
strokeColor = fillColor;
|
||||
stroked = 'false';
|
||||
}
|
||||
|
||||
this.style.background = 'transparent';
|
||||
this.style.borderColor = 'transparent';
|
||||
|
||||
// Find which element provides position:relative for the target element (default to BODY)
|
||||
var el = this;
|
||||
var limit = 100, i = 0;
|
||||
while ((typeof(el) != 'unknown') && (el.currentStyle.position != 'relative') && (el.tagName != 'BODY')) {
|
||||
el = el.parentElement;
|
||||
i++;
|
||||
if (i >= limit) { return(false); }
|
||||
}
|
||||
var el_zindex = parseInt(el.currentStyle.zIndex);
|
||||
if (isNaN(el_zindex)) { el_zindex = 0; }
|
||||
//alert('got tag '+ el.tagName +' with pos '+ el.currentStyle.position);
|
||||
|
||||
var rect_size = {
|
||||
'width': this.offsetWidth - strokeWeight,
|
||||
'height': this.offsetHeight - strokeWeight
|
||||
};
|
||||
var el_pos = findPos(el);
|
||||
var this_pos = findPos(this);
|
||||
this_pos.y = this_pos.y + (0.5 * strokeWeight) - el_pos.y;
|
||||
this_pos.x = this_pos.x + (0.5 * strokeWeight) - el_pos.x;
|
||||
|
||||
var rect = document.createElement('v:roundrect');
|
||||
rect.arcsize = arcSize +'px';
|
||||
rect.strokecolor = strokeColor;
|
||||
rect.strokeWeight = strokeWeight +'px';
|
||||
rect.stroked = stroked;
|
||||
rect.style.display = 'block';
|
||||
rect.style.position = 'absolute';
|
||||
rect.style.top = this_pos.y +'px';
|
||||
rect.style.left = this_pos.x +'px';
|
||||
rect.style.width = rect_size.width +'px';
|
||||
rect.style.height = rect_size.height +'px';
|
||||
rect.style.antialias = true;
|
||||
rect.style.zIndex = el_zindex - 1;
|
||||
|
||||
var fill = document.createElement('v:fill');
|
||||
fill.color = fillColor;
|
||||
fill.src = fillSrc;
|
||||
fill.type = 'tile';
|
||||
|
||||
rect.appendChild(fill);
|
||||
el.appendChild(rect);
|
||||
|
||||
var css = el.document.createStyleSheet();
|
||||
css.addRule("v\\:roundrect", "behavior: url(#default#VML)");
|
||||
css.addRule("v\\:fill", "behavior: url(#default#VML)");
|
||||
|
||||
isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
|
||||
// IE6 doesn't support transparent borders, use padding to offset original element
|
||||
if (isIE6 && (strokeWeight > 0)) {
|
||||
this.style.borderStyle = 'none';
|
||||
this.style.paddingTop = parseInt(this.currentStyle.paddingTop || 0) + strokeWeight;
|
||||
this.style.paddingBottom = parseInt(this.currentStyle.paddingBottom || 0) + strokeWeight;
|
||||
}
|
||||
|
||||
if (typeof(window.rounded_elements) == 'undefined') {
|
||||
window.rounded_elements = new Array();
|
||||
|
||||
if (typeof(window.onresize) == 'function') { window.previous_onresize = window.onresize; }
|
||||
window.onresize = window_resize;
|
||||
}
|
||||
this.element.vml = rect;
|
||||
window.rounded_elements.push(this.element);
|
||||
}
|
||||
|
||||
function window_resize() {
|
||||
if (typeof(window.rounded_elements) == 'undefined') { return(false); }
|
||||
|
||||
for (var i in window.rounded_elements) {
|
||||
var el = window.rounded_elements[i];
|
||||
|
||||
var strokeWeight = parseInt(el.currentStyle.borderWidth);
|
||||
if (isNaN(strokeWeight)) { strokeWeight = 0; }
|
||||
|
||||
var parent_pos = findPos(el.vml.parentNode);
|
||||
var pos = findPos(el);
|
||||
pos.y = pos.y + (0.5 * strokeWeight) - parent_pos.y;
|
||||
pos.x = pos.x + (0.5 * strokeWeight) - parent_pos.x;
|
||||
|
||||
el.vml.style.top = pos.y +'px';
|
||||
el.vml.style.left = pos.x +'px';
|
||||
}
|
||||
|
||||
if (typeof(window.previous_onresize) == 'function') { window.previous_onresize(); }
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
<li><a href=proj>projects</a></li>
|
||||
<li><a href=json-diff>json-diff</a></li>
|
||||
<li><a href=riak-js>riak-js docs</a></li>
|
||||
<li><a href=f>randoms</a></li>
|
||||
<li class=last><a href=f>randoms</a></li>
|
||||
</ul>
|
||||
<p id=sjs>
|
||||
<a href=https://twitter.com/_sjs>@_sjs</a>
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@
|
|||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- fuck ie -->
|
||||
<!--[if lt IE 8]>
|
||||
<script src=http://d1eqzjbvoh1rux.cloudfront.net/json2.min.js></script>
|
||||
<![endif]-->
|
||||
<script src=../gitter.js></script>
|
||||
<script src=../store.js></script>
|
||||
<script src=../proj.js></script>
|
||||
|
|
@ -45,7 +49,7 @@
|
|||
<h4>contributors</h4>
|
||||
<span id=contributors><img src=../spinner.gif></span>
|
||||
</div>
|
||||
<div></div>
|
||||
<br class=clear>
|
||||
</div>
|
||||
<p id=sjs>
|
||||
<a href=https://twitter.com/_sjs>@_sjs</a>
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@
|
|||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- fuck ie -->
|
||||
<!--[if lt IE 8]>
|
||||
<script src=http://d1eqzjbvoh1rux.cloudfront.net/json2.min.js></script>
|
||||
<![endif]-->
|
||||
<script src=../gitter.js></script>
|
||||
<script src=../store.js></script>
|
||||
<script src=../proj.js></script>
|
||||
|
|
@ -45,7 +49,7 @@
|
|||
<h4>contributors</h4>
|
||||
<span id=contributors><img src=../spinner.gif></span>
|
||||
</div>
|
||||
<div></div>
|
||||
<br class=clear>
|
||||
</div>
|
||||
<p id=sjs>
|
||||
<a href=https://twitter.com/_sjs>@_sjs</a>
|
||||
|
|
|
|||
353
proj/gitter.js
353
proj/gitter.js
|
|
@ -9,6 +9,21 @@
|
|||
// - authentication and write APIs
|
||||
|
||||
(function() {
|
||||
// fuck ie
|
||||
var ie = (function() {
|
||||
var undef
|
||||
, v = 3
|
||||
, div = document.createElement('div')
|
||||
, all = div.getElementsByTagName('i')
|
||||
|
||||
while (
|
||||
div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->',
|
||||
all[0]
|
||||
);
|
||||
|
||||
return v > 4 ? v : undef
|
||||
}())
|
||||
|
||||
var inherits
|
||||
if ('create' in Object) {
|
||||
// util.inherits from node
|
||||
|
|
@ -21,93 +36,24 @@
|
|||
}
|
||||
})
|
||||
}
|
||||
} else {
|
||||
} else if ([].__proto__) {
|
||||
inherits = function(ctor, superCtor) {
|
||||
ctor.super_ = superCtor
|
||||
ctor.prototype.__proto__ = superCtor.prototype
|
||||
ctor.prototype.constructor = ctor
|
||||
}
|
||||
}
|
||||
|
||||
if (!Array.isArray) {
|
||||
Array.isArray = function(x) {
|
||||
return Object.prototype.toString.call(x) === '[object Array]'
|
||||
}
|
||||
}
|
||||
|
||||
// Object.defineProperty and Object.keys from Kris Kowal's es5-shim
|
||||
// https://github.com/kriskowal/es5-shim
|
||||
|
||||
var has = Object.prototype.hasOwnProperty;
|
||||
|
||||
// ES5 15.2.3.6
|
||||
if (!Object.defineProperty) {
|
||||
Object.defineProperty = function(object, property, descriptor) {
|
||||
if (typeof descriptor == "object" && object.__defineGetter__) {
|
||||
if (has.call(descriptor, "value")) {
|
||||
if (!object.__lookupGetter__(property) && !object.__lookupSetter__(property))
|
||||
// data property defined and no pre-existing accessors
|
||||
object[property] = descriptor.value;
|
||||
if (has.call(descriptor, "get") || has.call(descriptor, "set"))
|
||||
// descriptor has a value property but accessor already exists
|
||||
throw new TypeError("Object doesn't support this action");
|
||||
}
|
||||
// fail silently if "writable", "enumerable", or "configurable"
|
||||
// are requested but not supported
|
||||
else if (typeof descriptor.get == "function")
|
||||
object.__defineGetter__(property, descriptor.get);
|
||||
if (typeof descriptor.set == "function")
|
||||
object.__defineSetter__(property, descriptor.set);
|
||||
} else { // fuck ie
|
||||
var __hasProp = Object.prototype.hasOwnProperty
|
||||
inherits = function(child, parent) {
|
||||
for (var key in parent) {
|
||||
if (__hasProp.call(parent, key)) child[key] = parent[key]
|
||||
}
|
||||
return object;
|
||||
};
|
||||
}
|
||||
// ES5 15.2.3.14
|
||||
// http://whattheheadsaid.com/2010/10/a-safer-object-keys-compatibility-implementation
|
||||
if (!Object.keys) {
|
||||
(function() {
|
||||
var hasDontEnumBug = true,
|
||||
dontEnums = [
|
||||
'toString',
|
||||
'toLocaleString',
|
||||
'valueOf',
|
||||
'hasOwnProperty',
|
||||
'isPrototypeOf',
|
||||
'propertyIsEnumerable',
|
||||
'constructor'
|
||||
],
|
||||
dontEnumsLength = dontEnums.length;
|
||||
|
||||
for (var key in {"toString": null})
|
||||
hasDontEnumBug = false;
|
||||
|
||||
Object.keys = function (object) {
|
||||
|
||||
if (
|
||||
typeof object !== "object" && typeof object !== "function"
|
||||
|| object === null
|
||||
)
|
||||
throw new TypeError("Object.keys called on a non-object");
|
||||
|
||||
var keys = [];
|
||||
for (var name in object) {
|
||||
if (has.call(object, name)) {
|
||||
keys.push(name);
|
||||
}
|
||||
}
|
||||
|
||||
if (hasDontEnumBug) {
|
||||
for (var i = 0, ii = dontEnumLength; i < ii; i++) {
|
||||
var dontEnum = dontEnums[i];
|
||||
if (has.call(o, dontEnum)) {
|
||||
keys.push(dontEnum);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return keys;
|
||||
};
|
||||
}())
|
||||
function ctor() { this.constructor = child }
|
||||
ctor.prototype = parent.prototype
|
||||
child.prototype = new ctor
|
||||
child.__super__ = parent.prototype
|
||||
return child
|
||||
}
|
||||
}
|
||||
|
||||
var global = this
|
||||
|
|
@ -122,13 +68,13 @@
|
|||
return new Blob(repo, sha, path, cb)
|
||||
},
|
||||
branch: function(repo, branch, cb) {
|
||||
return new Branch(repo, branch, cb)
|
||||
return new Branch(repo, branch, cb)
|
||||
},
|
||||
commits: function(repo, branch, cb) {
|
||||
return new Branch(repo, branch).getCommits(cb)
|
||||
},
|
||||
commit: function(repo, sha, cb) {
|
||||
return new Commit(repo, sha, cb)
|
||||
return new Commit(repo, sha, cb)
|
||||
},
|
||||
raw: function(repo, sha, cb) {
|
||||
return new Raw(repo, sha, cb)
|
||||
|
|
@ -182,6 +128,7 @@
|
|||
if (isBrowser) global.GITR = api
|
||||
else module.exports = api
|
||||
|
||||
if (isBrowser) shim()
|
||||
|
||||
// Define resources //
|
||||
|
||||
|
|
@ -210,8 +157,9 @@
|
|||
]
|
||||
})
|
||||
Tree.prototype._processData = function(data) {
|
||||
Resource.prototype._processData.call(this, data)
|
||||
var result = Resource.prototype._processData.call(this, data)
|
||||
this.blobs = this.data()
|
||||
return result
|
||||
}
|
||||
|
||||
User = createResource('user/show/:user', {
|
||||
|
|
@ -245,7 +193,7 @@
|
|||
function createResource(route, options) {
|
||||
if (!route) throw new Error('route is required')
|
||||
options = options || {}
|
||||
|
||||
|
||||
var resource = function() { Resource.apply(this, [].slice.call(arguments)) }
|
||||
inherits(resource, Resource)
|
||||
|
||||
|
|
@ -257,14 +205,18 @@
|
|||
var dataProp = '_' + prop
|
||||
, fn = 'get' + titleCaseFirst(prop)
|
||||
, processData = function(d) {
|
||||
getter(this, dataProp, function() { return camelize(unpack(d))})
|
||||
if (ie < 9) { // fuck ie
|
||||
this[dataProp] = camelize(unpack(d))
|
||||
} else {
|
||||
getter(this, dataProp, function() { return camelize(unpack(d))})
|
||||
}
|
||||
}
|
||||
, result = function(resource) { return this[dataProp] }
|
||||
, result = function(resource) { return resource[dataProp] }
|
||||
resource.prototype[fn] = function(cb, force) {
|
||||
return this._fetch({ prop: dataProp
|
||||
, route: route || this._route + '/' + prop
|
||||
, processData: processData.bind(this)
|
||||
, result: result.bind(this)
|
||||
, result: result
|
||||
}, cb.bind(this), force)
|
||||
}
|
||||
return resource
|
||||
|
|
@ -272,7 +224,7 @@
|
|||
if (options.has) options.has.forEach(function(args) {
|
||||
resource.has.apply(resource, Array.isArray(args) ? args : [args])
|
||||
})
|
||||
|
||||
|
||||
return resource
|
||||
}
|
||||
|
||||
|
|
@ -354,10 +306,10 @@
|
|||
cb(null, options.result(this))
|
||||
return this
|
||||
}
|
||||
|
||||
|
||||
// Interpolate resource params
|
||||
var path = this.resolve(options.route)
|
||||
|
||||
|
||||
// Make the request
|
||||
return this._get(path, function(err, data) {
|
||||
if (err) {
|
||||
|
|
@ -437,11 +389,202 @@
|
|||
|
||||
function titleCaseFirst(s) { return s.charAt(0).toUpperCase() + s.slice(1) }
|
||||
|
||||
|
||||
|
||||
// Browser Utilities //
|
||||
|
||||
if (isBrowser) (function() {
|
||||
var update, merge, load, _jsonpCounter = 1
|
||||
function shim() {
|
||||
// bind from Prototype
|
||||
if (!Function.prototype.bind) {
|
||||
(function(){
|
||||
function update(array, args) {
|
||||
var arrayLength = array.length, length = args.length
|
||||
while (length--) array[arrayLength + length] = args[length]
|
||||
return array
|
||||
}
|
||||
function merge(array, args) {
|
||||
array = [].slice.call(array, 0)
|
||||
return update(array, args)
|
||||
}
|
||||
Function.prototype.bind = function(context) {
|
||||
if (arguments.length < 2 && typeof arguments[0] === 'undefined') return this
|
||||
var __method = this, args = [].slice.call(arguments, 1)
|
||||
return function() {
|
||||
var a = merge(args, arguments)
|
||||
return __method.apply(context, a)
|
||||
}
|
||||
}
|
||||
}())
|
||||
}
|
||||
|
||||
// a few functions from Kris Kowal's es5-shim
|
||||
// https://github.com/kriskowal/es5-shim
|
||||
|
||||
var has = Object.prototype.hasOwnProperty;
|
||||
|
||||
// ES5 15.2.3.6
|
||||
if (!Object.defineProperty || ie === 8) { // fuck ie
|
||||
Object.defineProperty = function(object, property, descriptor) {
|
||||
if (typeof descriptor == "object" && object.__defineGetter__) {
|
||||
if (has.call(descriptor, "value")) {
|
||||
if (!object.__lookupGetter__(property) && !object.__lookupSetter__(property))
|
||||
// data property defined and no pre-existing accessors
|
||||
object[property] = descriptor.value;
|
||||
if (has.call(descriptor, "get") || has.call(descriptor, "set"))
|
||||
// descriptor has a value property but accessor already exists
|
||||
throw new TypeError("Object doesn't support this action");
|
||||
}
|
||||
// fail silently if "writable", "enumerable", or "configurable"
|
||||
// are requested but not supported
|
||||
else if (typeof descriptor.get == "function")
|
||||
object.__defineGetter__(property, descriptor.get);
|
||||
if (typeof descriptor.set == "function")
|
||||
object.__defineSetter__(property, descriptor.set);
|
||||
}
|
||||
return object;
|
||||
};
|
||||
}
|
||||
|
||||
// ES5 15.2.3.14
|
||||
// http://whattheheadsaid.com/2010/10/a-safer-object-keys-compatibility-implementation
|
||||
if (!Object.keys) { // fuck ie
|
||||
(function() {
|
||||
var hasDontEnumBug = true,
|
||||
dontEnums = [
|
||||
'toString',
|
||||
'toLocaleString',
|
||||
'valueOf',
|
||||
'hasOwnProperty',
|
||||
'isPrototypeOf',
|
||||
'propertyIsEnumerable',
|
||||
'constructor'
|
||||
],
|
||||
dontEnumsLength = dontEnums.length;
|
||||
|
||||
for (var key in {"toString": null})
|
||||
hasDontEnumBug = false;
|
||||
|
||||
Object.keys = function (object) {
|
||||
|
||||
if (
|
||||
typeof object !== "object" && typeof object !== "function"
|
||||
|| object === null
|
||||
)
|
||||
throw new TypeError("Object.keys called on a non-object");
|
||||
|
||||
var keys = [];
|
||||
for (var name in object) {
|
||||
if (has.call(object, name)) {
|
||||
keys.push(name);
|
||||
}
|
||||
}
|
||||
|
||||
if (hasDontEnumBug) {
|
||||
for (var i = 0, ii = dontEnumsLength; i < ii; i++) {
|
||||
var dontEnum = dontEnums[i];
|
||||
if (has.call(object, dontEnum)) {
|
||||
keys.push(dontEnum);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return keys;
|
||||
};
|
||||
}())
|
||||
}
|
||||
|
||||
//
|
||||
// Array
|
||||
// =====
|
||||
//
|
||||
|
||||
// ES5 15.4.3.2
|
||||
if (!Array.isArray) {
|
||||
Array.isArray = function(obj) {
|
||||
return Object.prototype.toString.call(obj) == "[object Array]";
|
||||
};
|
||||
}
|
||||
|
||||
// ES5 15.4.4.18
|
||||
if (!Array.prototype.forEach) { // fuck ie
|
||||
Array.prototype.forEach = function(block, thisObject) {
|
||||
var len = this.length >>> 0;
|
||||
for (var i = 0; i < len; i++) {
|
||||
if (i in this) {
|
||||
block.call(thisObject, this[i], i, this);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// ES5 15.4.4.19
|
||||
// https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/map
|
||||
if (!Array.prototype.map) { // fuck ie
|
||||
Array.prototype.map = function(fun /*, thisp*/) {
|
||||
var len = this.length >>> 0;
|
||||
if (typeof fun != "function")
|
||||
throw new TypeError();
|
||||
|
||||
var res = new Array(len);
|
||||
var thisp = arguments[1];
|
||||
for (var i = 0; i < len; i++) {
|
||||
if (i in this)
|
||||
res[i] = fun.call(thisp, this[i], i, this);
|
||||
}
|
||||
|
||||
return res;
|
||||
};
|
||||
}
|
||||
|
||||
// ES5 15.4.4.20
|
||||
if (!Array.prototype.filter) { // fuck ie
|
||||
Array.prototype.filter = function (block /*, thisp */) {
|
||||
var values = [];
|
||||
var thisp = arguments[1];
|
||||
for (var i = 0; i < this.length; i++)
|
||||
if (block.call(thisp, this[i]))
|
||||
values.push(this[i]);
|
||||
return values;
|
||||
};
|
||||
}
|
||||
|
||||
// ES5 15.4.4.21
|
||||
// https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/reduce
|
||||
if (!Array.prototype.reduce) { // fuck ie
|
||||
Array.prototype.reduce = function(fun /*, initial*/) {
|
||||
var len = this.length >>> 0;
|
||||
if (typeof fun != "function")
|
||||
throw new TypeError();
|
||||
|
||||
// no value to return if no initial value and an empty array
|
||||
if (len == 0 && arguments.length == 1)
|
||||
throw new TypeError();
|
||||
|
||||
var i = 0;
|
||||
if (arguments.length >= 2) {
|
||||
var rv = arguments[1];
|
||||
} else {
|
||||
do {
|
||||
if (i in this) {
|
||||
rv = this[i++];
|
||||
break;
|
||||
}
|
||||
|
||||
// if array contains no values, no initial value to return
|
||||
if (++i >= len)
|
||||
throw new TypeError();
|
||||
} while (true);
|
||||
}
|
||||
|
||||
for (; i < len; i++) {
|
||||
if (i in this)
|
||||
rv = fun.call(null, rv, this[i], i, this);
|
||||
}
|
||||
|
||||
return rv;
|
||||
};
|
||||
}
|
||||
|
||||
var load, _jsonpCounter = 1
|
||||
request = function(options, cb) { // jsonp request, quacks like mikeal's request module
|
||||
var jsonpCallbackName = '_jsonpCallback' + _jsonpCounter++
|
||||
, url = options.uri + '?callback=GITR.' + jsonpCallbackName
|
||||
|
|
@ -452,26 +595,6 @@
|
|||
load(url)
|
||||
}
|
||||
|
||||
// bind from Prototype (for Safari 5)
|
||||
if (!Function.prototype.bind) {
|
||||
update = function(array, args) {
|
||||
var arrayLength = array.length, length = args.length
|
||||
while (length--) array[arrayLength + length] = args[length]
|
||||
return array
|
||||
}
|
||||
merge = function(array, args) {
|
||||
array = [].slice.call(array, 0)
|
||||
return update(array, args)
|
||||
}
|
||||
Function.prototype.bind = function(context) {
|
||||
if (arguments.length < 2 && typeof arguments[0] === 'undefined') return this
|
||||
var __method = this, args = [].slice.call(arguments, 1)
|
||||
return function() {
|
||||
var a = merge(args, arguments)
|
||||
return __method.apply(context, a)
|
||||
}
|
||||
}
|
||||
}
|
||||
// bootstrap loader from LABjs
|
||||
load = function(url) {
|
||||
var oDOC = document
|
||||
|
|
@ -512,5 +635,5 @@
|
|||
}, false)
|
||||
}
|
||||
}
|
||||
}())
|
||||
}
|
||||
}())
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@
|
|||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- fuck ie -->
|
||||
<!--[if lt IE 8]>
|
||||
<script src=http://d1eqzjbvoh1rux.cloudfront.net/json2.min.js></script>
|
||||
<![endif]-->
|
||||
<script src=../gitter.js></script>
|
||||
<script src=../store.js></script>
|
||||
<script src=../proj.js></script>
|
||||
|
|
@ -45,7 +49,7 @@
|
|||
<h4>contributors</h4>
|
||||
<span id=contributors><img src=../spinner.gif></span>
|
||||
</div>
|
||||
<div></div>
|
||||
<br class=clear>
|
||||
</div>
|
||||
<p id=sjs>
|
||||
<a href=https://twitter.com/_sjs>@_sjs</a>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<link rel=stylesheet href=../style.css>
|
||||
<style>
|
||||
#gh { text-align: center }
|
||||
#gh img { border: 0 }
|
||||
#gh img { border: none }
|
||||
span { padding: 5px }
|
||||
</style>
|
||||
<script>
|
||||
|
|
@ -21,6 +21,10 @@
|
|||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- fuck ie -->
|
||||
<!--[if lt IE 8]>
|
||||
<script src=http://d1eqzjbvoh1rux.cloudfront.net/json2.min.js></script>
|
||||
<![endif]-->
|
||||
<script src=gitter.js></script>
|
||||
<script src=store.js></script>
|
||||
<script>
|
||||
|
|
@ -29,7 +33,11 @@
|
|||
}
|
||||
|
||||
(function() {
|
||||
document.addEventListener('DOMContentLoaded', ready, false)
|
||||
if (document.addEventListener) {
|
||||
document.addEventListener('DOMContentLoaded', ready, false)
|
||||
} else if (window.attachEvent) { // fuck ie
|
||||
window.attachEvent('onload', ready)
|
||||
}
|
||||
|
||||
function ready() {
|
||||
function addClass(el, name) {
|
||||
|
|
@ -94,7 +102,7 @@
|
|||
<li><a href=format>format</a></li>
|
||||
<li><a href=gitter>gitter</a></li>
|
||||
<li><a href=repl-edit>repl-edit</a></li>
|
||||
<li><a href=strftime>strftime</a></li>
|
||||
<li class=last><a href=strftime>strftime</a></li>
|
||||
</ul>
|
||||
<p id=gh>
|
||||
<a class=img href=https://github.com/samsonjs><img src=gh.png alt=GitHub></a>
|
||||
|
|
|
|||
|
|
@ -5,31 +5,27 @@
|
|||
; width: 90%
|
||||
; max-width: 950px
|
||||
; background-color: #fff
|
||||
; border-radius: 20px
|
||||
; -webkit-border-radius: 20px
|
||||
; -moz-border-radius: 20px
|
||||
; -webkit-border-radius: 20px
|
||||
; border-radius: 20px
|
||||
; behavior: url(../../border-radius.htc) /* fuck ie */
|
||||
}
|
||||
|
||||
h4 { margin: 0.5em 0 0.7em }
|
||||
|
||||
#info > div { text-align: center
|
||||
; font-size: 1.3em
|
||||
; width: 32%
|
||||
; width: 31%
|
||||
; max-width: 400px
|
||||
; float: left
|
||||
; display: inline /* fuck ie */
|
||||
; padding: 0.5em 0.2em
|
||||
; border-left: dashed 1px #aaa
|
||||
}
|
||||
|
||||
#info > div:first-child { border-left: none }
|
||||
|
||||
#info div:last-child { clear: both
|
||||
; float: none
|
||||
; border: 0
|
||||
; height: 0
|
||||
; width: 0
|
||||
; padding: 0
|
||||
}
|
||||
#info > br.clear { clear: both }
|
||||
|
||||
@media only screen and (max-device-width:480px) {
|
||||
#info { width: 70%
|
||||
|
|
|
|||
|
|
@ -7,7 +7,11 @@
|
|||
global.SJS = {
|
||||
proj: function(name) {
|
||||
var data = createObjectStore(name)
|
||||
document.addEventListener('DOMContentLoaded', ready, false)
|
||||
if (document.addEventListener) {
|
||||
document.addEventListener('DOMContentLoaded', ready, false)
|
||||
} else if (window.attachEvent) {
|
||||
window.attachEvent('onload', ready)
|
||||
}
|
||||
function ready() {
|
||||
function addClass(el, name) {
|
||||
var c = el.className || name
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@
|
|||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- fuck ie -->
|
||||
<!--[if lt IE 8]>
|
||||
<script src=http://d1eqzjbvoh1rux.cloudfront.net/json2.min.js></script>
|
||||
<![endif]-->
|
||||
<script src=../gitter.js></script>
|
||||
<script src=../store.js></script>
|
||||
<script src=../proj.js></script>
|
||||
|
|
@ -45,7 +49,7 @@
|
|||
<h4>contributors</h4>
|
||||
<span id=contributors><img src=../spinner.gif></span>
|
||||
</div>
|
||||
<div></div>
|
||||
<br class=clear>
|
||||
</div>
|
||||
<p id=sjs>
|
||||
<a href=https://twitter.com/_sjs>@_sjs</a>
|
||||
|
|
|
|||
|
|
@ -1,33 +1,46 @@
|
|||
(function() {
|
||||
if (typeof localStorage === 'undefined') return
|
||||
var global = this
|
||||
global.createObjectStore = function(namespace) {
|
||||
function makeKey(k) {
|
||||
return '--' + namespace + '-' + (k || '')
|
||||
}
|
||||
return {
|
||||
clear: function() {
|
||||
var i = localStorage.length
|
||||
, k
|
||||
, prefix = new RegExp('^' + makeKey())
|
||||
while (--i) {
|
||||
k = localStorage.key(i)
|
||||
if (k.match(prefix)) {
|
||||
localStorage.remove(k)
|
||||
if (typeof localStorage !== 'undefined') {
|
||||
var global = this
|
||||
global.createObjectStore = function(namespace) {
|
||||
function makeKey(k) {
|
||||
return '--' + namespace + '-' + (k || '')
|
||||
}
|
||||
return {
|
||||
clear: function() {
|
||||
var i = localStorage.length
|
||||
, k
|
||||
, prefix = new RegExp('^' + makeKey())
|
||||
while (--i) {
|
||||
k = localStorage.key(i)
|
||||
if (k.match(prefix)) {
|
||||
localStorage.remove(k)
|
||||
}
|
||||
}
|
||||
},
|
||||
get: function(key) {
|
||||
var val = localStorage.getItem(makeKey(key))
|
||||
return typeof val === 'string' ? JSON.parse(val) : val
|
||||
},
|
||||
set: function(key, val) {
|
||||
localStorage.setItem(makeKey(key), JSON.stringify(val))
|
||||
},
|
||||
remove: function(key) {
|
||||
localStorage.removeItem(makeKey(key))
|
||||
}
|
||||
},
|
||||
get: function(key) {
|
||||
var val = localStorage.getItem(makeKey(key))
|
||||
return typeof val === 'string' ? JSON.parse(val) : val
|
||||
},
|
||||
set: function(key, val) {
|
||||
localStorage.setItem(makeKey(key), JSON.stringify(val))
|
||||
},
|
||||
remove: function(key) {
|
||||
localStorage.removeItem(makeKey(key))
|
||||
}
|
||||
}
|
||||
global.ObjectStore = global.createObjectStore('default')
|
||||
} else { // fuck ie
|
||||
// Create an in-memory store, should probably fall back to cookies
|
||||
global.createObjectStore = function() {
|
||||
var store = {}
|
||||
return {
|
||||
clear: function() { store = {} },
|
||||
get: function(key) { return store[key] },
|
||||
set: function(key, val) { store[key] = val },
|
||||
remove: function(key) { delete store[key] }
|
||||
}
|
||||
}
|
||||
global.ObjectStore = createObjectStore()
|
||||
}
|
||||
global.ObjectStore = global.createObjectStore('default')
|
||||
}())
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@
|
|||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- fuck ie -->
|
||||
<!--[if lt IE 8]>
|
||||
<script src=http://d1eqzjbvoh1rux.cloudfront.net/json2.min.js></script>
|
||||
<![endif]-->
|
||||
<script src=../gitter.js></script>
|
||||
<script src=../store.js></script>
|
||||
<script src=../proj.js></script>
|
||||
|
|
@ -45,7 +49,7 @@
|
|||
<h4>contributors</h4>
|
||||
<span id=contributors><img src=../spinner.gif></span>
|
||||
</div>
|
||||
<div></div>
|
||||
<br class=clear>
|
||||
</div>
|
||||
<p id=sjs>
|
||||
<a href=https://twitter.com/_sjs>@_sjs</a>
|
||||
|
|
|
|||
|
|
@ -17,6 +17,10 @@
|
|||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
<!-- fuck ie -->
|
||||
<!--[if lt IE 8]>
|
||||
<script src=http://d1eqzjbvoh1rux.cloudfront.net/json2.min.js></script>
|
||||
<![endif]-->
|
||||
<script src=../gitter.js></script>
|
||||
<script src=../store.js></script>
|
||||
<script src=../proj.js></script>
|
||||
|
|
@ -46,7 +50,7 @@
|
|||
<h4>contributors</h4>
|
||||
<span id=contributors><img src=../spinner.gif></span>
|
||||
</div>
|
||||
<div></div>
|
||||
<br class=clear>
|
||||
</div>
|
||||
<p id=sjs>
|
||||
<a href=https://twitter.com/_sjs>@_sjs</a>
|
||||
|
|
|
|||
21
style.css
21
style.css
|
|
@ -24,7 +24,7 @@ a { color: #22a
|
|||
; border-bottom: dashed 1px #22a
|
||||
}
|
||||
|
||||
a.img { border: 0 }
|
||||
a.img { border: none }
|
||||
|
||||
#breadcrumbs { font-size: 1.5em
|
||||
; color: #222
|
||||
|
|
@ -35,7 +35,7 @@ a.img { border: 0 }
|
|||
|
||||
#breadcrumbs a { text-shadow: none
|
||||
; color: #222
|
||||
; border: 0
|
||||
; border: none
|
||||
; text-decoration: underline
|
||||
}
|
||||
|
||||
|
|
@ -46,9 +46,17 @@ ul { text-align: center
|
|||
; width: 90%
|
||||
; max-width: 950px
|
||||
; background-color: #fff
|
||||
; border-radius: 20px
|
||||
; -webkit-border-radius: 20px
|
||||
; -moz-border-radius: 20px
|
||||
; -webkit-border-radius: 20px
|
||||
; border-radius: 20px
|
||||
|
||||
/* ie searches for this path relative to the referencing file,
|
||||
* not this file as any sane implementation would do.
|
||||
*
|
||||
* fuck ie
|
||||
*/
|
||||
; behavior: url(border-radius.htc)
|
||||
; behavior: url(../border-radius.htc)
|
||||
}
|
||||
|
||||
li { display: inline
|
||||
|
|
@ -59,6 +67,7 @@ li { display: inline
|
|||
|
||||
li:after { content: ' •' }
|
||||
li:last-child:after { content: '' }
|
||||
li.last:after { content: '' } /* fuck ie */
|
||||
|
||||
li a { padding: 5px
|
||||
; text-shadow: #999 5px 5px 5px
|
||||
|
|
@ -80,14 +89,14 @@ li a:active { color: #000
|
|||
#forkme { position: absolute
|
||||
; top: 0
|
||||
; right: 0
|
||||
; border: 0
|
||||
; border: none
|
||||
}
|
||||
|
||||
#promote-js { margin-top: 3em
|
||||
; text-align: center
|
||||
}
|
||||
|
||||
#promote-js img { border: 0 }
|
||||
#promote-js img { border: none }
|
||||
|
||||
td { font-size: 1.5em
|
||||
; line-height: 1.6em
|
||||
|
|
|
|||
Loading…
Reference in a new issue