This file contains 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
[its id=900450985] |
This file contains 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
[its s="keikyutool pro"] |
This file contains 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
[its id=625334537 youtube=https://www.youtube.com/watch?v=RMuGnFl5_U4&index=1&list=UUF1vI0OCWSk2sdDVOLaLIRQ] |
This file contains 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
angular.module('starter.controllers') | |
.controller('TwitterCtrl', function ($scope, $cordovaOauth) { | |
console.log("twitter"); | |
$cordovaOauth.twitter("uUYq3pK0DNqxCtoiuXvyXKWuV", "O6qxFeKYA1po2KaJUnCMCUJlJqxkYLSM8qxtUKOlJRqPy2An1c").then(function (result) { | |
console.log('success'); | |
console.log(result); | |
}, function (error) { | |
console.log('error'); | |
console.log(error); | |
}); |
This file contains 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
isInAppBrowserInstalled: function(cordovaMetadata) { | |
var inAppBrowserNames = ["cordova-plugin-inappbrowser", "org.apache.cordova.inappbrowser"]; | |
return inAppBrowserNames.some(function(name) { | |
return cordovaMetadata.hasOwnProperty(name); | |
}); | |
}, |
This file contains 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
isInAppBrowserInstalled: function(cordovaMetadata) { | |
return (typeof cordova != "undefined" && typeof cordova.InAppBrowser != "undefined"); | |
}, |
This file contains 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
server { | |
listen 80; | |
server_name example.com; | |
location / { | |
return 301 https://example.com$request_uri; | |
} | |
location ~ ^/.well-known/ { | |
root /var/www/ssl/example.com/; | |
} | |
} |
#Comprehensive Introduction to @ngrx/store By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
This file contains 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
import { | |
Injectable, | |
ViewContainerRef, | |
Component, | |
ViewChild, | |
Directive, | |
AfterViewInit | |
} from '@angular/core'; | |
import { Modal } from './modal.service'; |
OlderNewer