mirror of https://github.com/sipwise/ngcp-csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.3 KiB
66 lines
2.3 KiB
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10, user-scalable=yes">
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Sipwise Customer Portal</title>
|
|
|
|
|
|
<script type="text/javascript">
|
|
var Ext = Ext || {}; // Ext namespace won't be defined yet...
|
|
|
|
// This function is called by the Microloader after it has performed basic
|
|
// device detection. The results are provided in the "tags" object. You can
|
|
// use these tags here or even add custom tags. These can be used by platform
|
|
// filters in your manifest or by platformConfig expressions in your app.
|
|
//
|
|
Ext.beforeLoad = function (tags) {
|
|
|
|
// var s = location.search, // the query string (ex "?foo=1&bar")
|
|
// profile;
|
|
//
|
|
// // For testing look for "?classic" or "?modern" in the URL to override
|
|
// // device detection default.
|
|
// //
|
|
// if (s.match(/\bclassic\b/)) {
|
|
// profile = 'classic';
|
|
// }
|
|
// else if (s.match(/\bmodern\b/)) {
|
|
// profile = 'modern';
|
|
// }
|
|
// // uncomment this if you have added native build profiles to your app.json
|
|
// /*else if (tags.webview) {
|
|
// if (tags.ios) {
|
|
// profile = 'ios';
|
|
// }
|
|
// // add other native platforms here
|
|
// }*/
|
|
// else {
|
|
// //profile = tags.desktop ? 'classic' : 'modern';
|
|
// profile = tags.phone ? 'modern' : 'classic';
|
|
// }
|
|
|
|
//Ext.manifest = profile; // this name must match a build profile name
|
|
|
|
Ext.manifest = 'classic';
|
|
|
|
// This function is called once the manifest is available but before
|
|
// any data is pulled from it.
|
|
//
|
|
//return function (manifest) {
|
|
// peek at / modify the manifest object
|
|
//};
|
|
};
|
|
</script>
|
|
|
|
|
|
<!-- The line below must be kept intact for Sencha Cmd to build your application -->
|
|
<script id="microloader" type="text/javascript" src="bootstrap.js"></script>
|
|
|
|
|
|
</head>
|
|
<body></body>
|
|
</html>
|