This file contains 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
// http://stackoverflow.com/questions/11616630/json-stringify-avoid-typeerror-converting-circular-structure-to-json/11616993#11616993 | |
//this is a version for Vue.js | |
//filters vue.js internal properties | |
//you can extend Vue object instead | |
Object.stringify = function(value, space) { | |
var cache = []; | |
var output = JSON.stringify(value, function (key, value) { |
This file contains 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
// I had to comment L21--> ssc_root.style.height = "auto"; | |
// it affected my bootstrap 2 layout. I see no reason for setting this. | |
// SmoothScroll v0.9.10 | |
// Licensed under the terms of the MIT license. | |
// People involved | |
// - Balazs Galambosi: maintainer (CHANGELOG.txt) | |
// - Patrick Brunner ([email protected]) | |
// - Michael Herf: ssc_pulse Algorithm |
This file contains 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
<?php | |
//here is my version (working on a sqlite db) | |
set_time_limit(0); | |
class models { | |
public $year_model , | |
$brand , | |
$model , | |
$mec , |