If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
| package | |
| { | |
| import flash.net.getClassByAlias; | |
| import flash.utils.describeType; | |
| import flash.utils.getDefinitionByName; | |
| import flash.utils.getQualifiedClassName; | |
| import mx.utils.ObjectUtil; | |
| public class JSONConverter |
| <platform name="android"> | |
| <icon src="config/assets/icon/android/icon.png" /> | |
| <icon src="config/assets/icon/android/licon.png" density="ldpi" /> | |
| <icon src="config/assets/icon/android/micon.png" density="mdpi" /> | |
| <icon src="config/assets/icon/android/hicon.png" density="hdpi" /> | |
| <icon src="config/assets/icon/android/icon.png" density="xhdpi" /> | |
| </platform> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="Simple search API invocation using command pattern in angular js" /> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.1/angular.min.js"></script> | |
| <script src="https://rawgit.com/yukatan/commangular/master/dist/commangular.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body ng-app="myApp"> |
| (function(){ | |
| 'use strict'; | |
| angular.module("app", []) | |
| // config phase | |
| .config(function ($provide) { | |
| // decorate the $q service | |
| $provide.decorator('$q', function decorateQ($delegate) { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="Example of promise with services in angularJs"> | |
| <script src="https://rawgit.com/lodash/lodash/3.0.1/lodash.min.js"></script> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>Matteo Playground</title> | |
| </head> | |
| <body ng-app="app"> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="Example of promise with services in angularJs"> | |
| <script src="https://rawgit.com/lodash/lodash/3.0.1/lodash.min.js"></script> | |
| <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>Matteo Playground</title> | |
| </head> | |
| <body ng-app="app"> |
| (function () { | |
| 'use strict'; | |
| angular.module('app.views', []) | |
| .controller('MainController', MainController); | |
| function MainController($modal) { | |
| // --------------------------------- | |
| // Open Modal |
| (function() { | |
| 'use strict'; | |
| // original data source | |
| var source = [{ | |
| "id": 105142, | |
| "text": "root level", | |
| "parent": null | |
| }, { | |
| "id": 105150, |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
| /* eslint new-cap:0 no-unused-vars:0 */ | |
| var React = require("react"); | |
| var ReactDom = require("react-dom"); | |
| var Playground = require("../src/index"); | |
| require("./styles/syntax.css"); | |
| require("./styles/codemirror.css"); | |
| require("./styles/demo.css"); |