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
/** | |
DISTRIQT ForceTouch Extension - Example code for initialisation and events | |
**/ | |
public function initExtension():void | |
{ | |
if (ForceTouch.isSupported) | |
{ | |
Core.init( APP_KEY ); | |
ForceTouch.init( APP_KEY ); |
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
/** | |
DISTRIQT ForceTouch Extension - Example code for using app shortcuts | |
**/ | |
public function initExtension():void | |
{ | |
if (ForceTouch.isSupported) | |
{ | |
Core.init( APP_KEY ); | |
ForceTouch.init( APP_KEY ); |
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
'use strict'; | |
var path = require('path'); | |
var webpack = require('webpack'); | |
var HtmlWebpackPlugin = require('html-webpack-plugin'); | |
var ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
var StatsPlugin = require('stats-webpack-plugin'); | |
module.exports = { | |
entry: [ |
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
/* | |
Breakpoints | |
*/ | |
@value small: (max-width: 599px); | |
@value medium: (min-width: 600px) and (max-width: 959px); | |
@value large: (min-width: 960px); |
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
<?xml version="1.0" encoding="utf-8" standalone="no"?> | |
<application xmlns="http://ns.adobe.com/air/application/22.0"> | |
<id>com.distriqt.test</id> | |
<filename>TestFacebookAPI</filename> | |
<name>TestFacebookAPI</name> | |
<versionNumber>0.0.0</versionNumber> | |
<initialWindow> | |
<content>[This value will be overwritten by Flash Builder in the output app.xml]</content> | |
<autoOrients>false</autoOrients> |
OlderNewer