From 728e1747eabdd7a84c6dbb75268593f248dd6ece Mon Sep 17 00:00:00 2001 From: istrasoft Date: Mon, 28 May 2012 04:07:53 +0300 Subject: [PATCH] Update application.js, as of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers. --- js/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/application.js b/js/application.js index 0f091a9..fc83cd7 100644 --- a/js/application.js +++ b/js/application.js @@ -2,7 +2,7 @@ jQuery Mobile Boilerplate application.js */ -$(document).live("pageinit", function(event){ +$(document).on("pageinit", function(event){ // custom code goes here -- 2.20.1