Hierarchical data metrics that allows fast read operations on tree like structures.
Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.
Hierarchical data metrics that allows fast read operations on tree like structures.
Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.
/*http://support.google.com/chrome/?hl=en*/ | |
::-webkit-scrollbar { | |
height: 16px !important; | |
overflow: visible !important; | |
width: 16px !important; | |
} | |
::-webkit-scrollbar-thumb { | |
background: -webkit-linear-gradient(left, rgba(198,198,198,1) 0%,rgba(220,220,220,1) 100%) !important; | |
background-clip: padding-box !important; |
# gist https://gist.github.com/expertmind/6410029 | |
# Based on https://gist.github.com/isaacbowen/1182136 | |
module WillPaginate | |
module Sinatra | |
module Helpers | |
include ViewHelpers | |
def will_paginate(collection, options = {}) #:nodoc: |