Name | Url | Price |
Divvy | http://mizage.com/divvy/ | 14.95$ |
Zooom/2 | http://coderage-software.com/zooom/index.html | 19.95$ |
Slate | https://github.com/jigish/slate | Free |
Afloat | http://infinite-labs.net/afloat/ | Free |
SizeUp | http://www.irradiatedsoftware.com/sizeup/ | 13$ |
ShiftIt | https://github.com/fikovnik/ShiftIt | Free |
Spectacle | https://itunes.apple.com/us/app/spectacle/id487069743?mt=12 | Free |
OptimalLayout | http://most-advantageous.com/optimal-layout/ | 14$ |
Tyler Window Management | http://www.tylerwm.com/ | 9.99$ |
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
<section class="slide" ng-app> | |
<input type="text" ng-model="prenom" placeholder="Entre ton prénom içi"> | |
<input type="text" ng-model="verbe" placeholder="et un verbe..."> | |
<input type="text" ng-model="whatever" placeholder="pis n'importe quoi"> | |
<hr> | |
<h2>{{prenom}} {{verbe}} {{whatever}} !!</h2> | |
</section> |
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
<section class="slide" ng-app> | |
<input type="text" ng-model="prenom" placeholder="Entre ton prénom içi"> | |
<input type="text" ng-model="verbe" placeholder="et un verbe..."> | |
<input type="text" ng-model="whatever" placeholder="pis n'importe quoi"> | |
<hr> | |
<h2>{{prenom}} {{verbe}} {{whatever}} !!</h2> | |
</section> |
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
<script src="js/angular-1.0.0rc10.min.js"></script> | |
<section ng-app> | |
<input type="text" ng-model="prenom" placeholder="Entre ton prénom içi"> | |
<input type="text" ng-model="verbe" placeholder="et un verbe..."> | |
<input type="text" ng-model="whatever" placeholder="pis n'importe quoi"> | |
<hr> | |
<h2>{{prenom}} {{verbe}} {{whatever}} !!</h2> | |
</section> |
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
<script src="js/angular-1.0.0rc10.min.js"></script> | |
<section ng-app> | |
<h1>Allo <span>{{prenom || 'toi'}}</span> !</h1> | |
<form> | |
<input ng-model="prenom" type="text" name="prenom"> | |
</form> | |
</section> |
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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | |
<title>Twitter widget</title> |
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
// La couche qui communique avec les URLs REST | |
angular.module( | |
'taResource', ['ngResource'] | |
).factory( | |
'tonDataAccess', function ($resource) { | |
var url = "/ton/url"; | |
return $resource( | |
url, {}, { update: { method: 'PUT'} } | |
); |
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
/* =========================================================== | |
* bootstrap-tooltip.js v2.1.0 | |
* http://twitter.github.com/bootstrap/javascript.html#tooltips | |
* Inspired by the original jQuery.tipsy by Jason Frame | |
* =========================================================== | |
* Copyright 2012 Twitter, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at |
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
$(document).ready(function(){ | |
$("a.colorbox").colobox({}); | |
$("#foo1").carouFredSel(); | |
$("select.foo").change(function(){ | |
// bla bla | |
}); | |
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
$(document).ready(function(){ | |
$("a.colorbox").colobox({}); | |
$("#foo1").carouFredSel(); | |
$("select.foo").change(function(){ | |
// bla bla | |
}); | |