Subversion Repositories SmartDukaan

Rev

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

Rev 31986 Rev 32639
Line 205... Line 205...
205
					<span>
205
					<span>
206
						<input type="number" min="1" class="form-control quantity"></input>
206
						<input type="number" min="1" class="form-control quantity"></input>
207
					</span></h4>
207
					</span></h4>
208
				<hr/>
208
				<hr/>
209
				<span>
209
				<span>
210
					<button type="submit" id="addToBagButton" class="btn btn-primary">Submit!</button>
210
					<button type="submit" id="addToBagButton" class="btn btn-primary">Add more!</button>
-
 
211
					<button type="submit" id="addToBagButtonwithCart" class="btn btn-warning">Continue to cart</button>
211
		       	</span>
212
		       	</span>
212
			  </div>
213
			  </div>
213
			  </div>
214
			  </div>
214
		    </div>
215
		    </div>
215
		</div>
216
		</div>
Line 230... Line 231...
230
            getItemAheadOptions($("#catalog-search-text-compare"),false,function(selectedItem){
231
            getItemAheadOptions($("#catalog-search-text-compare"),false,function(selectedItem){
231
		 	currentItem = selectedItem;
232
		 	currentItem = selectedItem;
232
		 	console.log(currentItem);
233
		 	console.log(currentItem);
233
		 });	
234
		 });	
234
		});
235
		});
235
 </script>
-
 
236
236
 </script>
-
 
237
<!-- Include the Toastify CSS file -->
-
 
238
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
-
 
239
 
-
 
240
<!-- Include the Toastify JS file -->
-
 
241
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
-
 
242
<script>
-
 
243
	function showToast(message) {
-
 
244
		Toastify({
-
 
245
			text: message,
-
 
246
			duration: 3000, // 3 seconds
-
 
247
			gravity: "top", // or "bottom"
-
 
248
			position: "right", // "left", "center", "right"
-
 
249
			backgroundColor: "green", // specify the background color
-
 
250
		}).showToast();
-
 
251
	}
-
 
252
</script>
-
 
253
237
254