This file contains hidden or 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
<template> | |
<nav class="navbar navbar-default navbar-fixed-top" role="navigation"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#skeleton-navigation-navbar-collapse"> | |
<span class="sr-only">Toggle Navigation</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
<a class="navbar-brand" href="#"> |
This file contains hidden or 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
<template> | |
<nav class="navbar navbar-default navbar-fixed-top" role="navigation"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#skeleton-navigation-navbar-collapse"> | |
<span class="sr-only">Toggle Navigation</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
<a class="navbar-brand" href="#"> |
This file contains hidden or 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
-(x - 4)^2 = -(x - 8)^2 | |
Hint: | Multiply both sides by a constant to simplify the equation. | |
Multiply both sides by -1: | |
(x - 4)^2 = (x - 8)^2 | |
Hint: | Eliminate the exponent on the left hand side. | |
Take the square root of both sides: | |
x - 4 = x - 8 or x - 4 = 8 - x |
This file contains hidden or 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
{ | |
"name": "aurelia-cli-759", | |
"type": "project:application", | |
"bundler": { | |
"id": "cli", | |
"displayName": "Aurelia-CLI" | |
}, | |
"build": { | |
"targets": [ | |
{ |
This file contains hidden or 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
<template> | |
<require from="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<ak-grid k-data-source.bind="datasource" | |
k-pageable.bind="{ pageSizes: [25, 50, 100], buttonCount: 10 }" | |
k-filterable.bind="true" | |
k-sortable.bind="true" | |
k-selectable="multiple, row" | |
k-scrollable.bind="true" |
This file contains hidden or 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
figure(3); | |
title('test', ... | |
'fontsize',16); | |
xlabel('Threshold steps /100','fontsize',16); | |
ylabel('l','fontsize',16); | |
This file contains hidden or 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
Starting 'test'... | |
webpack: wait until bundle finished: | |
webpack: wait until bundle finished: | |
{ uid: 0, | |
name: 'test', | |
branch: false, | |
error: | |
{ TypeError: request.replace is not a function | |
at C:\Users\Jeroe\Downloads\aurelia-plugin-sample-karma-webpack\aurelia-plugin-sample-karma-webpack\typescript\node_modules\webpack\lib\NormalModuleFactory.js:106:27 | |
at C:\Users\Jeroe\Downloads\aurelia-plugin-sample-karma-webpack\aurelia-plugin-sample-karma-webpack\typescript\node_modules\webpack\lib\NormalModuleFactory.js:59:4 |
This file contains hidden or 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
{ | |
"compileOnSave": false, | |
"compilerOptions": { | |
"target": "es5", | |
"module": "esnext", | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"moduleResolution": "node", | |
"sourceRoot": "src", | |
"allowJs": true, |
This file contains hidden or 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
<template> | |
<style> | |
tr.shown td div.details-control { | |
background: url(https://datatables.net/examples/resources/details_close.png) no-repeat center center; | |
width: 40px; | |
height: 40px; | |
cursor: hand; | |
cursor: pointer; | |
} |
This file contains hidden or 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
<template> | |
<require from="aurelia-kendoui-bridge/menu/menu"></require> | |
<require from="aurelia-kendoui-bridge/datetimepicker/datetimepicker"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<h4>Menu</h4> | |
<ul id="menu" | |
ak-menu="k-open-on-click.bind: true; k-close-on-click.bind: true; k-animation.bind: false" | |
k-on-close.trigger="onClose($event)"> | |
<li> |