start new:
tmux
start new with session name:
tmux new -s myname
| { | |
| "api": { | |
| "CredentialUserData": { | |
| "__compat": { | |
| "mdn_url": "https://developer.mozilla.org/docs/Web/API/CredentialUserData", | |
| "support": { | |
| "chrome": { | |
| "version_added": "60" | |
| }, | |
| "chrome_android": { |
| import '../css/main.css'; | |
| console.log("message"); | |
| (function() { | |
| var observer; | |
| var index = 0; | |
| var options = { | |
| root: null, | |
| rootMargin: '0px', | |
| threshold: 0 | |
| } |
| angular.module('myMdl', []).config(['$httpProvider', function($httpProvider) { | |
| $httpProvider.responseInterceptors.push([ | |
| '$q', '$templateCache', 'activeProfile', | |
| function($q, $templateCache, activeProfile) { | |
| // Keep track which HTML templates have already been modified. | |
| var modifiedTemplates = {}; | |
| // Tests if there are any keep/omit attributes. | |
| var HAS_FLAGS_EXP = /data-(keep|omit)/; |
| /** | |
| Code copyright Dustin Diaz and Ross Harmes, Pro JavaScript Design Patterns. | |
| **/ | |
| // Constructor. | |
| var Interface = function (name, methods) { | |
| if (arguments.length != 2) { | |
| throw new Error("Interface constructor called with " + arguments.length + "arguments, but expected exactly 2."); | |
| } | |
| this.name = name; |
| /** | |
| Code copyright Dustin Diaz and Ross Harmes, Pro JavaScript Design Patterns. | |
| **/ | |
| // Constructor. | |
| var Interface = function (name, methods) { | |
| if (arguments.length != 2) { | |
| throw new Error("Interface constructor called with " + arguments.length + "arguments, but expected exactly 2."); | |
| } | |
| this.name = name; |