64 lines
No EOL
1.7 KiB
JavaScript
64 lines
No EOL
1.7 KiB
JavaScript
/*
|
|
* Ext JS Library 1.0.1
|
|
* Copyright(c) 2006-2007, Ext JS, LLC.
|
|
* licensing@extjs.com
|
|
*
|
|
* http://www.extjs.com/license
|
|
*/
|
|
|
|
// some data used in the examples
|
|
Ext.namespace('Ext.exampledata');
|
|
|
|
Ext.exampledata.states = [
|
|
['AL', 'Alabama'],
|
|
['AK', 'Alaska'],
|
|
['AZ', 'Arizona'],
|
|
['AR', 'Arkansas'],
|
|
['CA', 'California'],
|
|
['CO', 'Colorado'],
|
|
['CN', 'Connecticut'],
|
|
['DE', 'Delaware'],
|
|
['DC', 'District of Columbia'],
|
|
['FL', 'Florida'],
|
|
['GA', 'Georgia'],
|
|
['HW', 'Hawaii'],
|
|
['ID', 'Idaho'],
|
|
['IL', 'Illinois'],
|
|
['IN', 'Indiana'],
|
|
['IA', 'Iowa'],
|
|
['KS', 'Kansas'],
|
|
['KY', 'Kentucky'],
|
|
['LA', 'Louisiana'],
|
|
['MA', 'Maine'],
|
|
['MD', 'Maryland'],
|
|
['MS', 'Massachusetts'],
|
|
['MI', 'Michigan'],
|
|
['MN', 'Minnesota'],
|
|
['MS', 'Mississippi'],
|
|
['MO', 'Missouri'],
|
|
['MT', 'Montana'],
|
|
['NE', 'Nebraska'],
|
|
['NV', 'Nevada'],
|
|
['NH', 'New Hampshire'],
|
|
['NJ', 'New Jersey'],
|
|
['NM', 'New Mexico'],
|
|
['NY', 'New York'],
|
|
['NC', 'North Carolina'],
|
|
['ND', 'North Dakota'],
|
|
['OH', 'Ohio'],
|
|
['OK', 'Oklahoma'],
|
|
['OR', 'Oregon'],
|
|
['PA', 'Pennsylvania'],
|
|
['RH', 'Rhode Island'],
|
|
['SC', 'South Carolina'],
|
|
['SD', 'South Dakota'],
|
|
['TE', 'Tennessee'],
|
|
['TX', 'Texas'],
|
|
['UT', 'Utah'],
|
|
['VE', 'Vermont'],
|
|
['VA', 'Virginia'],
|
|
['WA', 'Washington'],
|
|
['WV', 'West Virginia'],
|
|
['WI', 'Wisconsin'],
|
|
['WY', 'Wyoming']
|
|
]; |