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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="jQuery UI Date picker" /> | |
<link href="//code.jquery.com/ui/1.9.2/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" /> | |
<script src="//code.jquery.com/jquery-1.8.3.min.js"></script> | |
<script src="//code.jquery.com/ui/1.9.2/jquery-ui.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Date Picker" /> | |
<link href="//code.jquery.com/ui/1.9.2/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" /> | |
<script src="//code.jquery.com/jquery-1.8.3.min.js"></script> | |
<script src="//code.jquery.com/ui/1.9.2/jquery-ui.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> |
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
#import "React/RCTBridgeModule.h" | |
@interface RCT_EXTERN_MODULE(ProgressIndicator, NSObject) | |
RCT_EXTERN_METHOD(show:(NSString *)text) | |
RCT_EXTERN_METHOD(hide) | |
@end |
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
#import <UIKit/UIKit.h> | |
#import <UMReactNativeAdapter/UMModuleRegistryAdapter.h> | |
#import <UMCore/UMAppDelegateWrapper.h> | |
#import <React/RCTBridgeDelegate.h> | |
#import <EXUpdates/EXUpdatesAppController.h> | |
@interface AppDelegate : UMAppDelegateWrapper <RCTBridgeDelegate, EXUpdatesAppControllerDelegate> | |
@property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; |
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
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9-1137 as base | |
# base on https://github.com/sclorg/s2i-nodejs-container/tree/master/18-minimal | |
# Add $HOME/node_modules/.bin to the $PATH, allowing user to make npm scripts | |
# available on the CLI without using npm's --global installation mode | |
# This image will be initialized with "npm run $NPM_RUN" | |
# See https://docs.npmjs.com/misc/scripts, and your repo's package.json | |
# file for possible values of NPM_RUN | |
# Description |