Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 8290 | Rev 8356 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 8290 Rev 8354
Línea 1910... Línea 1910...
1910
		if(img.type =="image/jpeg"||img.type =="image/png"){
1910
		if(img.type =="image/jpeg"||img.type =="image/png"){
1911
			$(".modificar").removeClass("animated");
1911
			$(".modificar").removeClass("animated");
1912
			var render = new FileReader();
1912
			var render = new FileReader();
1913
			render.readAsDataURL(img);
1913
			render.readAsDataURL(img);
1914
			render.onload = function(e){
1914
			render.onload = function(e){
-
 
1915
				imagen2=new Image();
-
 
1916
				imagen2.src=e.target.result;
-
 
1917
				
-
 
1918
				$(imagen2).ready(function(e){
-
 
1919
					console.log(imagen2.width)
-
 
1920
					console.log(imagen2.height)
-
 
1921
					if(imagen2.width<100||imagen2.height<100){
-
 
1922
						$.fn.showError('La imagen debe tener al menos un tamano mayor a 100x100');
-
 
1923
					}else{
1915
				$(".volver").css("display","block")
1924
						$(".volver").css("display","block")
1916
				$(".a1").addClass("paso");
1925
						$(".a1").addClass("paso");
1917
				$(".titulo_pasos").html("LABEL_STEP_2");
1926
						$(".titulo_pasos").html("LABEL_STEP_2");
1918
				console.log(e.target.result)
-
 
1919
				editorNoticia(e.target.result)
1927
						editorNoticia(imagen2.src)
-
 
1928
					}			
-
 
1929
				})
1920
			}	
1930
			}
-
 
1931
		}else{
-
 
1932
			$.fn.showError('imagen debe ser un JPG o PNG');
1921
		}
1933
		}
1922
	})	
1934
	})	
1923
	$(document).on("dragover", "body", function(e){
1935
	$(document).on("dragover", "body", function(e){
1924
		e.preventDefault();
1936
		e.preventDefault();
1925
		e.stopPropagation();
1937
		e.stopPropagation();