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
var View = require('famous/core/View'); | |
var Engine = require('famous/core/Engine'); | |
var Modifier = require('famous/core/Modifier'); | |
var Transform = require('famous/core/Transform'); | |
var StateModifier = require('famous/modifiers/StateModifier'); | |
var Easing = require('famous/transitions/Easing'); | |
var Transitionable = require('famous/transitions/Transitionable'); | |
var GenericSync = require('famous/inputs/GenericSync'); | |
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
exports.config = require('./easy-config.coffee').config({ | |
src: | |
input: | |
"lib": [ | |
"libs/jquery.min.js" | |
# ..etc ... | |
] | |
"app": [ | |
"src/app/main.js" | |
/^src\/app/ |
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
/*globals define*/ | |
define(function(require) { | |
'use strict'; | |
// import dependencies | |
var Engine = require('famous/core/Engine'); | |
var Surface = require('famous/core/Surface'); | |
var ScrollView = require('famous/views/ScrollView'); | |
var ImageSurface = require('famous/surfaces/ImageSurface'); | |
var StateModifier = require('famous/modifiers/StateModifier'); | |
var RenderNode = require('famous/core/RenderNode'); |
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
/* | |
Plugin Name: Mo-Files | |
Description: Which Mo-Files are loaded? | |
*/ | |
function translation_scan($mo_file,$domain) { | |
global $TRANSLATION_FILES; | |
$TRANSLATION_FILES .= "<tr><td>$domain</td><td>$mo_file</td></tr>"; | |
return $mo_file; | |
} | |
add_filter( 'load_textdomain_mofile', 'translation_scan' , 11, 2 ); |
NewerOlder