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
// Create a new module | |
var myApp = angular.module('myApp', ['ngRoute']); | |
// register a new service | |
//myApp.value('appName', 'MyCoolApp'); | |
// configure existing services inside initialization blocks. | |
myApp.config(function($locationProvider,$routeProvider) { | |
$routeProvider | |
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
console.log("The Screen Width(these dimensions are measured in device pixels because they never change: they’re a feature of the monitor, and not of the browser."); | |
console.log("the browser width in css px is (no device pixel)" + window.innerWidth); | |
console.log("the browser width height in css ps is (no device pixel)" + window.innerHeight); | |
console.log("the layout viewport width in css px" + document.documentElement.clientWidth); | |
console.log("the layout viewport height in css px" + document.documentElement.clientHeight); | |
console.log("devicePixelRatio:"+window.devicePixelRatio) | |
console.log("the screen device width in dev px is " + screen.width); | |
console.log("the screen device height in dev px is " + screen.height); |
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
console.log(angular.version); |
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
var controllers= document.querySelectorAll('[data-ng-controller]'); | |
for(var j=0; j < document.querySelectorAll('[data-ng-controller]').length; j++){ | |
var controllerName = controllers[j].getAttribute("data-ng-controller"); | |
console.group("controller-"+(j+1)); | |
console.log(controllerName); | |
console.groupEnd("controller"); | |
} |
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
$("[data-sna-ready]").each(function(i,t){ | |
console.group("data-sna-ready"+i); | |
console.log($(t).data('sna-ready')); | |
console.groupEnd("data-sna-ready"+i); | |
}); |
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.reloadWithDebugInfo() | |
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
setTimeout(function(){ | |
debugger; | |
}, 5000); |
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
document.body.contentEditable=true |
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
@mixin ellipsis() { | |
overflow: hidden; | |
white-space: nowrap; | |
text-overflow: ellipsis; | |
} | |
@mixin word-wrap() { | |
overflow-wrap: break-word; | |
word-wrap: break-word; | |
-ms-word-break: break-all; | |
word-break: break-word; |
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
/*START: Create Script Tag and append in last line of body*/ | |
function addScript( src ) { | |
var s = document.createElement( 'script' ); | |
s.setAttribute( 'src', src ); | |
document.body.appendChild( s ); | |
} | |
/*END: Create Script Tag and append in last line of body*/ |
OlderNewer