mirror of
				https://github.com/aclindsa/moneygo.git
				synced 2025-10-29 17:13:26 -04:00 
			
		
		
		
	* Only update the field that was modified when one is changed instead of deep-copying the entire Transaction object * Create a new AmountInput text box to allow for more intuitive editing of amounts.
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
| <head>
 | |
| <title>MoneyGo</title>
 | |
| 
 | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
 | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
 | |
| <link rel="stylesheet" href="static/external/react-widgets/react-widgets.css">
 | |
| <link rel="stylesheet" href="static/stylesheet.css">
 | |
| 
 | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
 | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
 | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/react-with-addons.js"></script>
 | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/JSXTransformer.js"></script>
 | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/globalize/0.1.1/globalize.min.js"></script>
 | |
| <script src="static/external/react-bootstrap/react-bootstrap.min.js"></script>
 | |
| <script src="static/external/react-widgets/react-widgets.js"></script>
 | |
| <script src="static/external/big/big.min.js"></script>
 | |
| <script src="static/external/classnames/index.js"></script>
 | |
| 
 | |
| <script type="text/javascript" src="static/utils.js"></script>
 | |
| <script type="text/javascript" src="static/models.js"></script>
 | |
| 
 | |
| <script type="text/jsx" src="static/top_bar.js"></script>
 | |
| <script type="text/jsx" src="static/account_register.js"></script>
 | |
| <script type="text/jsx" src="static/accounts.js"></script>
 | |
| <script type="text/jsx" src="static/ui.js"></script>
 | |
| 
 | |
| </head>
 | |
| <body>
 | |
| <div id="content"></div>
 | |
| </body>
 | |
| </html>
 |