Wang Weihua
Wang Weihua
[3.3.4 Matching](https://koka-lang.github.io/koka/doc/book.html#sec-matching) is still marked with `TODO`. Is there any plan on finishing this section?
stmp服务器:smtp.163.com 端口:465 开启ssl 点击测试后提示: Could not connect to smtp host: smtp.163.com, port: 25 把端口改成25,关闭ssl,仍然提示上述错误
`processInclude` function will change(corrupt) binary files like *.png,*.gif,*.jpg. By skip files not in `extensions` before `processInclude` will solve the problem.
``` javascript app.directive('myBlur',['$parse',function($parse){ return { link: function(scope,element,attr){ var exprFn = $parse(attr.jqmBlur); element.bind('blur',function(e){ scope.$apply(function(){ exprFn(scope,{$element:element,$event:e}); }); }); } }; }]) ```
``` html {{name}} ``` following code will not work ``` html {{name}} ```
[How to surround text with tag conditionally in AngularJS?](http://stackoverflow.com/questions/16579597/how-to-surround-text-with-tag-conditionally-in-angularjs/16579695?noredirect=1#comment23826942_16579695) ``` html linked notlinked ``` credit [Umur Kontacı](http://stackoverflow.com/users/825780/umur-kontaci)
``` html "all" %> //disable jqm routing $(document).bind('mobileinit', function(){ $.extend( $.mobile , { linkBindingEnabled: false, hashListeningEnabled:false }); } ); /* show page by default */ .ui-mobile [data-role=page]{ display:block; } ```...
[Call a function when ng-repeat has finished](http://stackoverflow.com/questions/15207788/calling-a-function-when-ng-repeat-has-finished) ``` javascript var module = angular.module('testApp', []) .directive('onFinishRender', function ($timeout) { return { restrict: 'A', link: function (scope, element, attr) { if (scope.$last...