disabled right-click for images
This commit is contained in:
parent
35b71e14cd
commit
adc3cf76d1
|
@ -1,5 +1,8 @@
|
||||||
$(function(){
|
$(function() {
|
||||||
|
|
||||||
|
$('#slidesContainer').bind("contextmenu", function(e) {
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
$('.projectThumb').click(function() {
|
$('.projectThumb').click(function() {
|
||||||
// alert("hi");
|
// alert("hi");
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#logo').fadeIn(4000);
|
$('#logo').fadeIn(4000);
|
||||||
|
|
||||||
|
$('#slider').bind("contextmenu", function(e) {
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
var width = $(this).width();
|
var width = $(this).width();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user