| 
														
															@@ -7,7 +7,6 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             chips: [1, 5, 10, 25, 50, 100], 
														 | 
														
														 | 
														
															             chips: [1, 5, 10, 25, 50, 100], 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             total: 10000, 
														 | 
														
														 | 
														
															             total: 10000, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             max: 2000, 
														 | 
														
														 | 
														
															             max: 2000, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-            bet: 0, 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             selectedChip: 1, 
														 | 
														
														 | 
														
															             selectedChip: 1, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             alert: 'Place your bets by clicking on the Pass Line', 
														 | 
														
														 | 
														
															             alert: 'Place your bets by clicking on the Pass Line', 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             comeAlert: '', 
														 | 
														
														 | 
														
															             comeAlert: '', 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -37,6 +36,7 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             onPassLine: function() { 
														 | 
														
														 | 
														
															             onPassLine: function() { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 var self = this; 
														 | 
														
														 | 
														
															                 var self = this; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 if (self.passPoint) return; 
														 | 
														
														 | 
														
															                 if (self.passPoint) return; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                if (self.passPoint >= 2000) return; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 self.game = true; 
														 | 
														
														 | 
														
															                 self.game = true; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 self.comeAlert = ''; 
														 | 
														
														 | 
														
															                 self.comeAlert = ''; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 self.alert = 'Place your bets by clicking on the Pass Line'; 
														 | 
														
														 | 
														
															                 self.alert = 'Place your bets by clicking on the Pass Line'; 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -63,16 +63,18 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 self.oddsAlert = ""; 
														 | 
														
														 | 
														
															                 self.oddsAlert = ""; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 var max = self.passChipCount * 3; 
														 | 
														
														 | 
														
															                 var max = self.passChipCount * 3; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 if (self.selectedChip > max || (self.oddsChipCount + self.selectedChip) > max) { 
														 | 
														
														 | 
														
															                 if (self.selectedChip > max || (self.oddsChipCount + self.selectedChip) > max) { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                    self.total += self.oddsChipCount; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                     self.oddschips = self.passchips; 
														 | 
														
														 | 
														
															                     self.oddschips = self.passchips; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                     self.oddsChipCount = max; 
														 | 
														
														 | 
														
															                     self.oddsChipCount = max; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                     self.oddsAlert = "Max odds bet reached! (x3 of your pass bet)"; 
														 | 
														
														 | 
														
															                     self.oddsAlert = "Max odds bet reached! (x3 of your pass bet)"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                    self.total -= max; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 } else { 
														 | 
														
														 | 
														
															                 } else { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                     self.oddsChipCount += self.selectedChip; 
														 | 
														
														 | 
														
															                     self.oddsChipCount += self.selectedChip; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                     if (self.oddschips.indexOf(self.selectedChip) <= -1) { 
														 | 
														
														 | 
														
															                     if (self.oddschips.indexOf(self.selectedChip) <= -1) { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                         self.oddschips.push(self.selectedChip); 
														 | 
														
														 | 
														
															                         self.oddschips.push(self.selectedChip); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                     }; 
														 | 
														
														 | 
														
															                     }; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                    self.total -= self.selectedChip; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 } 
														 | 
														
														 | 
														
															                 } 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-                self.total -= self.oddsChipCount; 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             }, 
														 | 
														
														 | 
														
															             }, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             resetGame: function() { 
														 | 
														
														 | 
														
															             resetGame: function() { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                 var self = this; 
														 | 
														
														 | 
														
															                 var self = this; 
														 |