aboutsummaryrefslogtreecommitdiffstats
path: root/www/js/map-OpenLayers.js
Commit message (Collapse)AuthorAgeLines
...
* | tweaks to make form submission work with jquery mobileStruan Donald2012-10-24-0/+2
| |
* | Work in progress converstion to use Jquery mobileStruan Donald2012-10-24-3/+65
|/ | | | | Problem submission doesn't work yet and still some look and feel work to be done
* fix a few more places where we need FMS_URLStruan Donald2012-05-25-3/+3
|
* bring CSS and JS up to date with web versionStruan Donald2012-05-24-20/+42
|
* put back in commented out codeStruan Donald2012-03-19-3/+3
|
* move config out to fileStruan Donald2012-03-13-2/+2
|
* rough initial code for iPhone phonegap appStruan Donald2012-03-12-0/+500
ighlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
//
//  EditSubjectViewController.h
//  FixMyStreet
//
//  Created by Matthew on 01/10/2008.
//  Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//

#import <UIKit/UIKit.h>

@class EditingTableViewCell;

@interface EditSubjectViewController : UITableViewController <UITextFieldDelegate> {
	EditingTableViewCell *cell;
}

@property (nonatomic, retain) EditingTableViewCell *cell;

-(void)setAll:(NSString*)a viewTitle:(NSString*)b placeholder:(NSString*)c keyboardType:(UIKeyboardType)d capitalisation:(UITextAutocapitalizationType)e;
-(void)updateText:(NSString*)text;

@end