View app.js
// 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 | |
View viewport-info.js
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); |
View angularjs-version.js
console.log(angular.version); |
View get-angular-controller-in-page.js
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"); | |
} |
View sna-ready.js
$("[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); | |
}); |
View angular-enable-debug.js
angular.reloadWithDebugInfo() |
View debugger-timeout.js
setTimeout(function(){ | |
debugger; | |
}, 5000); |
View enable-body-edit.js
document.body.contentEditable=true |
View ellipsis.css
@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; |
View add-script-body.js
/*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