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
export default class ExampleService { | |
// you can do this in a controller as well. In fact, I do! | |
static $inject = ['$http']; | |
constructor($http) { | |
this.$http = $http; | |
} | |
// Example service function | |
getData () { |
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
export default class SortableController { | |
static get $inject() { return [ | |
'$scope' | |
];} | |
constructor($scope){ | |
this.$scope = $scope; | |
this.tmpList = []; | |
for (let i = 1; i <= 6; i++){ | |
this.tmpList.push({ | |
text: 'Item ' + i, |
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
# configure the path to php.ini | |
#PHPIniDir "C:/dev/tools/php" | |
Include "C:\dev\tools\apache2\conf\mod_jk.conf" | |
# JRun Settings | |
LoadModule jrun_module "C:/dev/tools/JRun4/lib/wsconfig/1/mod_jrun22.so" | |
<Files ~ ".hbmxml$"> | |
Order allow,deny |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="http://cmx.io/v/0.1/cmx.css"/> | |
<script src="http://cmx.io/v/0.1/cmx.js"></script> | |
<style>.cmx-user-scene4 .cmx-text-border .cmx-path {stroke: orange}</style> | |
<body> | |
<div style="max-width:900px; -webkit-transform:rotate(0deg);"> | |
<scene id="scene1"> | |
<label t="translate(0,346)"> |
NewerOlder