Linux
- 5 ответов
- 0 вопросов
8
Вклад в тег
find . -type f -name '*.py' -exec sed -i -r 's/regexp/new_replacement/g' {} \;
find . -type f -name '*.py' -exec sed -i -r 's/^(# Copyright 2008 -) [0-9]{4}/\\1 2015/g' {} \;
$(function() {
var box = $('#messagelist'); // float-fixed block
var top = box.offset().top - parseFloat(box.css('marginTop').replace(/auto/, 0));
$(window).scroll(function(){
var windowpos = $(window).scrollTop();
if(windowpos < top) {
box.css('position', 'static');
} else {
box.css('position', 'fixed');
box.css('top', 0);
}
});
});