Skip to content

Commit

Permalink
Rename references to Ti.UI.iPad.SplitWindow to Ti.UI.iOS.SplitWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
FokkeZB committed Oct 16, 2015
1 parent 15478a7 commit e577589
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Alloy/commands/compile/index.js
Expand Up @@ -613,7 +613,7 @@ function parseAlloyComponent(view, dir, manifest, noView, fileRestriction) {
if (viewName === 'index' && !dirname) {
var valid = [
'Ti.UI.Window',
'Ti.UI.iPad.SplitWindow',
'Ti.UI.iOS.SplitWindow',
'Ti.UI.TabGroup',
'Ti.UI.iOS.NavigationWindow'
].concat(CONST.MODEL_ELEMENTS);
Expand Down
2 changes: 1 addition & 1 deletion Alloy/commands/compile/parsers/Ti.UI.Tab.js
Expand Up @@ -19,7 +19,7 @@ function parse(node, state, args) {

var child = children[0],
childArgs = CU.getParserArgs(child),
theNode = CU.validateNodeName(child, ['Ti.UI.Window', 'Ti.UI.iPad.SplitWindow', 'Ti.UI.iOS.NavigationWindow']),
theNode = CU.validateNodeName(child, ['Ti.UI.Window', 'Ti.UI.iOS.SplitWindow', 'Ti.UI.iOS.NavigationWindow']),
windowSymbol;

// generate the code for the Window first
Expand Down
Expand Up @@ -14,8 +14,8 @@ function parse(node, state, args) {
subParents = [],
code = '',
err = [
'Ti.UI.iPad.SplitWindow (line ' + node.lineNumber + ') ',
'Ti.UI.iPad.SplitWindow must have exactly 2 children of one of the following types:',
'Ti.UI.iOS.SplitWindow (line ' + node.lineNumber + ') ',
'Ti.UI.iOS.SplitWindow must have exactly 2 children of one of the following types:',
' [' + VALID.join(',') + ']',
'The first child is the master, the second is the child.'
];
Expand Down

0 comments on commit e577589

Please sign in to comment.