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}
|
||||
php.version=PHP_54
|
||||
source.encoding=UTF-8
|
||||
|
||||
@ -16,6 +16,12 @@ function search(){
|
||||
$("#nav_search_btn").click(function(){
|
||||
$('#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(){
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user