-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from appcelerator-modules/parity
Add parity for "barCollapsingEnabled" and "open" event, expose more docs
- Loading branch information
Showing
18 changed files
with
404 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ xcuserdata/ | |
build/ | ||
/android/dist | ||
ios/titanium-web-dialog.xcodeproj/project.xcworkspace/xcuserdata | ||
android/libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
Language: Java | ||
AccessModifierOffset: -4 | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: None | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
# class, constructor, method should be next line | ||
BreakBeforeBraces: Linux | ||
# Keep '=' at end of line when wrapping, but move things like '&&', '||' to beginning of newline | ||
BreakBeforeBinaryOperators: NonAssignment | ||
# FIXME: break for brace after synchronized block, anonymous class declarations | ||
BreakAfterJavaFieldAnnotations: true | ||
ColumnLimit: 120 | ||
IndentCaseLabels: true | ||
IndentWidth: 4 | ||
MaxEmptyLinesToKeep: 1 | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeParens: ControlStatements | ||
SpacesInParentheses: false | ||
TabWidth: 4 | ||
UseTab: ForContinuationAndIndentation | ||
SpaceAfterCStyleCast: true | ||
# Spaces inside {} for array literals, i.e. "new Object[] { args }" | ||
Cpp11BracedListStyle: false | ||
ReflowComments: false |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
package ti.webdialog; | ||
|
||
public class Params { | ||
public class Params | ||
{ | ||
public static final String LCAT = "TiChromeDialog"; | ||
public static final String SHOW_TITLE = "showTitle"; | ||
public static final String URL = "url"; | ||
public static final String BAR_COLOR = "barColor"; | ||
public static final String FADE_TRANSITION = "fadeTransition"; | ||
public static final String ENABLE_SHARING = "enableSharing"; | ||
public static final String CLOSE_ICON = "closeIcon"; | ||
public static final String BAR_COLLAPSING_ENABLED = "barCollapsingEnabled"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.