Subversion Repositories SmartDukaan

Rev

Rev 32771 | Rev 33612 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32771 Rev 33167
Line 236... Line 236...
236
		 	currentItem = selectedItem;
236
		 	currentItem = selectedItem;
237
		 	console.log(currentItem);
237
		 	console.log(currentItem);
238
		 });	
238
		 });	
239
		});
239
		});
240
 </script>
240
 </script>
241
<!-- Include the Toastify CSS file -->
-
 
242
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
-
 
243
 
-
 
244
<!-- Include the Toastify JS file -->
-
 
245
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
-
 
246
<script>
-
 
247
	function showToast(message) {
-
 
248
		Toastify({
-
 
249
			text: message,
-
 
250
			duration: 3000, // 3 seconds
-
 
251
			gravity: "top", // or "bottom"
-
 
252
			position: "right", // "left", "center", "right"
-
 
253
			backgroundColor: "green", // specify the background color
-
 
254
		}).showToast();
-
 
255
	}
-
 
256
</script>
-
 
257
241