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 environment = require('../environment'), | |
| service = require('../service'), | |
| passport = require('passport'), | |
| model = service.useModel('model'), | |
| http = require('http'), | |
| KEYS = require('../key'), | |
| im = require('imagemagick'), | |
| knox = require('knox'); | |
| // amazon s3 |
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 statePool = require('./state.js'); | |
| var eventBus = require('./eventBus.js'); | |
| var dbService = require('./dbService.js'); | |
| var generator = require('./cmdGenerator.js'); | |
| var blockPhone = require('./phoneLockService.js'); | |
| var blockService = require('./blockService.js'); | |
| var txService = require('./txService.js'); | |
| var mcService = require('./machineService.js'); | |
| var async = require('async'); | |
| var service = require('./service.js'); |
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="www/extjs/resources/css/ext-all.css"> | |
| <script src="www/extjs/ext-all-debug.js"></script> | |
| <script> | |
| Ext.onReady(function() { |
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="www/extjs/resources/css/ext-all.css"> | |
| <script src="www/extjs/ext-all-debug.js"></script> | |
| <script> | |
| Ext.onReady(function() { | |
| Ext.define('Product', { | |
| extend: 'Ext.data.Model', | |
| idProperty: 'name', |
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="www/extjs/resources/css/ext-all.css"> | |
| <script src="www/extjs/ext-all-debug.js"></script> | |
| <style> | |
| div.product { | |
| float: left; | |
| padding: 8px 17px; | |
| margin: 5px; |
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="www/extjs/resources/css/ext-all.css"> | |
| <script src="www/extjs/ext-all-debug.js"></script> | |
| <script> | |
| Ext.onReady(function() { | |
| Ext.apply(Ext.form.field.VTypes, { |
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="www/extjs/resources/css/ext-all.css"> | |
| <script src="www/extjs/ext-all-debug.js"></script> | |
| <style> | |
| div.product { | |
| float: left; | |
| padding: 8px 17px; | |
| margin: 5px; |
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="www/extjs/resources/css/ext-all.css"> | |
| <script src="www/extjs/ext-all-debug.js"></script> | |
| <style> | |
| .x-item-selected { | |
| background: #eeffaa; | |
| } | |
| 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
| /** | |
| * @author Ed Spencer (http://sencha.com) | |
| * Transition plugin for DataViews | |
| */ | |
| Ext.define('Ext.ux.DataView.Animated', { | |
| /** | |
| * @property defaults | |
| * @type Object | |
| * Default configuration options for all DataViewTransition instances |
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
| <style> | |
| .x-item-selected { | |
| background: #eeffaa; | |
| } | |
| body { | |
| padding: 20px; | |
| } | |
| #todoTxt { | |
| margin-bottom: 20px; | |
| } |