Skip to content

Commit

Permalink
fixed build issue where spaces and tabs were mixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
qrider authored and qrider committed May 11, 2017
1 parent e0eb9a2 commit e54f20c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
36 changes: 18 additions & 18 deletions sdk/src/app_handlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,24 +428,24 @@ F2.extend('Constants', {
{
return {
/**
* When bound using {{#crossLink "F2.AppHandlers/on"}}F2.AppHandlers.on(){{/crossLink}} the listener function passed will receive the
* following argument(s): ( {{#crossLink "F2.AppConfig"}}appConfig{{/crossLink}} )
* @property APP_MANIFEST_REQUEST_FAIL
* @type string
* @static
* @final
* @example
* var _token = F2.AppHandlers.getToken();
* F2.AppHandlers.on(
* _token,
* F2.Constants.AppHandlers.APP_MANIFEST_REQUEST_FAIL,
* function(appConfig)
* {
* You can use information from the appConfig to surface a custom error message in the dom
* Or display some kind of default error placeholder element rather than having a blank spot in the dom
* }
* );
*/
* When bound using {{#crossLink "F2.AppHandlers/on"}}F2.AppHandlers.on(){{/crossLink}} the listener function passed will receive the
* following argument(s): ( {{#crossLink "F2.AppConfig"}}appConfig{{/crossLink}} )
* @property APP_MANIFEST_REQUEST_FAIL
* @type string
* @static
* @final
* @example
* var _token = F2.AppHandlers.getToken();
* F2.AppHandlers.on(
* _token,
* F2.Constants.AppHandlers.APP_MANIFEST_REQUEST_FAIL,
* function(appConfig)
* {
* You can use information from the appConfig to surface a custom error message in the dom
* Or display some kind of default error placeholder element rather than having a blank spot in the dom
* }
* );
*/
APP_MANIFEST_REQUEST_FAIL: 'appManifestRequestFail',
/**
* Equivalent to `appCreateRoot`. Identifies the create root method for use in AppHandlers.on/off.
Expand Down
8 changes: 4 additions & 4 deletions sdk/src/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -1143,10 +1143,10 @@ F2.extend('', (function() {
item.name = item.name || item.appId;
F2.log('Removed failed ' + item.name + ' app', item);
F2.AppHandlers.__trigger(
_sAppHandlerToken,
F2.Constants.AppHandlers.APP_MANIFEST_REQUEST_FAIL,
item // the app config
);
_sAppHandlerToken,
F2.Constants.AppHandlers.APP_MANIFEST_REQUEST_FAIL,
item // the app config
);
F2.removeApp(item.instanceId);
});
},
Expand Down

0 comments on commit e54f20c

Please sign in to comment.