This file contains hidden or 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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> |
This file contains hidden or 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> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width"> | |
</head> | |
<body> |
This file contains hidden or 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
F2_jsonpCallback_com_openf2_examples_javascript_helloworld({ | |
"scripts":[ | |
"https://raw.github.com/OpenF2/F2/master/examples/apps/JavaScript/HelloWorld/appclass.js" | |
], | |
"styles":[ | |
], | |
"apps":[ | |
{ | |
"html":[ |
This file contains hidden or 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
//define AppConfigs | |
var _appConfigs = [{ | |
appId: "com_your_app_id", | |
description: "F2 app description", | |
name: "F2 App", | |
manifestUrl: "../Basic-F2-App-Template/manifest.js" //note the path to your manifest! | |
}, | |
{ | |
appId: "com_your_app_id", | |
description: "F2 app description", |
This file contains hidden or 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
@font-face { | |
font-family: 'Open Sans'; | |
src: url('./font/opensansregular.eot'); | |
src: url('./font/opensansregular.eot?#iefix') format('embedded-opentype'), | |
url('./font/opensansregular.woff') format('woff'), | |
url('./font/opensansregular.ttf') format('truetype'), | |
url('./font/opensansregular.svg#opensansregular') format('svg'); | |
font-weight: normal; | |
font-style: normal; | |
} |
This file contains hidden or 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
@media (min-width: 768px) and (max-width: 979px) { | |
[data-hide="minWidth768"] { | |
/* http://css-tricks.com/places-its-tempting-to-use-display-none-but-dont/ */ | |
position: absolute; | |
overflow: hidden; | |
clip: rect(0 0 0 0); | |
height: 1px; | |
width: 1px; | |
margin: -1px; |
This file contains hidden or 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
[{ | |
"appId": "com_markh_highchartsChart", | |
"description": "Semi-Interactive Price Chart", | |
"height":300, | |
"minGridSize": 8, | |
"isSecure": false, | |
"manifestUrl": "../../apps/JavaScript/Chart/manifest.js", | |
"name": "Price Chart" | |
}, | |
{ |
This file contains hidden or 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
/** | |
* Core Container functionality | |
* @module f2 | |
* @class F2 | |
*/ | |
F2.extend('', (function(){ | |
var _apps = {}; | |
var _config = false; |
NewerOlder