Merge branch 'master' of mojotrollz.eu:hosting
This commit is contained in:
commit
5c958b956e
@ -1,3 +1,4 @@
|
|||||||
|
auxiliary.org-netbeans-modules-php-smarty.smarty-framework=true
|
||||||
include.path=${php.global.include.path}
|
include.path=${php.global.include.path}
|
||||||
php.version=PHP_54
|
php.version=PHP_54
|
||||||
source.encoding=UTF-8
|
source.encoding=UTF-8
|
||||||
|
|||||||
@ -15,7 +15,13 @@ function impressum(){
|
|||||||
function search(){
|
function search(){
|
||||||
$("#nav_search_btn").click(function(){
|
$("#nav_search_btn").click(function(){
|
||||||
$('#contentframe').load('./?page=search¶m='+$('#nav_search').val());
|
$('#contentframe').load('./?page=search¶m='+$('#nav_search').val());
|
||||||
});
|
});
|
||||||
|
$(document).keypress(function(e) {
|
||||||
|
var hasFocus = $('#nav_search').is(':focus');
|
||||||
|
if(e.which === 13 && hasFocus) {
|
||||||
|
$('#contentframe').load('./?page=search¶m='+$('#nav_search').val());
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function tabs(){
|
function tabs(){
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user